diff --git a/idom_router/simple.py b/idom_router/simple.py index c61a0b0..7c6901e 100644 --- a/idom_router/simple.py +++ b/idom_router/simple.py @@ -24,8 +24,6 @@ def __init__(self, route: Route) -> None: self.key = self.pattern.pattern def resolve(self, path: str) -> tuple[Any, dict[str, Any]] | None: - print(path) - print(self.key) match = self.pattern.match(path) if match: return ( diff --git a/requirements/check-style.txt b/requirements/check-style.txt index ea105f4..e8e2fb4 100644 --- a/requirements/check-style.txt +++ b/requirements/check-style.txt @@ -1,4 +1,5 @@ black flake8 +flake8-print flake8_idom_hooks isort diff --git a/setup.py b/setup.py index dc0fefa..cde7673 100644 --- a/setup.py +++ b/setup.py @@ -71,7 +71,7 @@ package["version"] = eval(line.split("=", 1)[1]) break else: - print("No version found in %s/__init__.py" % package_dir) + print("No version found in %s/__init__.py" % package_dir) # noqa: T201 sys.exit(1)