diff --git a/src/debugpy/__main__.py b/src/debugpy/__main__.py index 24c2b7fa..28e1eb28 100644 --- a/src/debugpy/__main__.py +++ b/src/debugpy/__main__.py @@ -17,7 +17,7 @@ if __name__ == "__main__": # # To fix both, we need to replace the automatically added entry such that it points # at parent directory of debugpy/ instead of debugpy/ itself, import debugpy with that - # in sys.path, and then remove the first entry entry altogether, so that it doesn't + # in sys.path, and then remove the first entry altogether, so that it doesn't # affect any further imports we might do. For example, suppose the user did: # # python /foo/bar/debugpy ... diff --git a/src/debugpy/adapter/__main__.py b/src/debugpy/adapter/__main__.py index e18ecd56..6da2d412 100644 --- a/src/debugpy/adapter/__main__.py +++ b/src/debugpy/adapter/__main__.py @@ -199,7 +199,7 @@ if __name__ == "__main__": # # To fix both, we need to replace the automatically added entry such that it points # at parent directory of debugpy/ instead of debugpy/adapter, import debugpy with that - # in sys.path, and then remove the first entry entry altogether, so that it doesn't + # in sys.path, and then remove the first entry altogether, so that it doesn't # affect any further imports we might do. For example, suppose the user did: # # python /foo/bar/debugpy/adapter ... diff --git a/src/debugpy/launcher/__main__.py b/src/debugpy/launcher/__main__.py index cff18b5f..da50f73e 100644 --- a/src/debugpy/launcher/__main__.py +++ b/src/debugpy/launcher/__main__.py @@ -63,7 +63,7 @@ if __name__ == "__main__": # # To fix both, we need to replace the automatically added entry such that it points # at parent directory of debugpy/ instead of debugpy/launcher, import debugpy with that - # in sys.path, and then remove the first entry entry altogether, so that it doesn't + # in sys.path, and then remove the first entry altogether, so that it doesn't # affect any further imports we might do. For example, suppose the user did: # # python /foo/bar/debugpy/launcher ...