Skip to content

Commit

Permalink
remove print
Browse files Browse the repository at this point in the history
  • Loading branch information
rmorshea committed May 11, 2023
1 parent 2f8f853 commit a169d6f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 0 additions & 2 deletions idom_router/simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
1 change: 1 addition & 0 deletions requirements/check-style.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
black
flake8
flake8-print
flake8_idom_hooks
isort
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down

0 comments on commit a169d6f

Please sign in to comment.