From 3ec555cebf89014aeb2d965750ff141457da198f Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 6 Feb 2024 14:03:04 -0500 Subject: [PATCH] spelling: entry Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/debugpy/__main__.py | 2 +- src/debugpy/adapter/__main__.py | 2 +- src/debugpy/launcher/__main__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 ...