Skip to content

Commit 8263b8a

Browse files
committed
Run pre-commit
1 parent b6c246f commit 8263b8a

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

adafruit_httpserver/headers.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ class HTTPHeaders:
4848
_storage: Dict[str, Tuple[str, str]]
4949

5050
def __init__(self, headers: Dict[str, str] = None) -> None:
51-
5251
headers = headers or {}
5352

5453
self._storage = {key.lower(): [key, value] for key, value in headers.items()}

adafruit_httpserver/route.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ class _HTTPRoute:
2121
"""Route definition for different paths, see `adafruit_httpserver.server.HTTPServer.route`."""
2222

2323
def __init__(self, path: str = "", method: HTTPMethod = HTTPMethod.GET) -> None:
24-
2524
contains_parameters = re.search(r"<\w*>", path) is not None
2625

2726
self.path = (

0 commit comments

Comments
 (0)