From 53f87ef2a5c8fc972c602c54d51dc431a76795fe Mon Sep 17 00:00:00 2001 From: Nikos Koukis Date: Wed, 24 Jan 2024 22:23:47 +0200 Subject: [PATCH] Add to .gitignore --- .gitignore | 1 + uri/part/scheme.py | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 313964a..d12e04f 100644 --- a/.gitignore +++ b/.gitignore @@ -42,3 +42,4 @@ htmlcov tags .coverage.* +.tool-versions diff --git a/uri/part/scheme.py b/uri/part/scheme.py index 49ff5c8..cd54d60 100644 --- a/uri/part/scheme.py +++ b/uri/part/scheme.py @@ -25,7 +25,6 @@ def load(self, plugin: str) -> Scheme: # If we haven't, attempt to load the explicit Scheme subclass to utilize for this named scheme. try: - import pdb; pdb.set_trace() result = entry_points(group="uri.scheme")[plugin].load() except KeyError: result = Scheme(plugin) # Can't look up by registered name? It's generic.