Skip to content

Commit 242dd65

Browse files
committed
Remove unused imports
Make the flake8's test "F401 imported but unused" happy.
1 parent 2f0ebe0 commit 242dd65

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

patterns/behavioral/chain_of_responsibility.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"""
2020

2121
from abc import ABC, abstractmethod
22-
from typing import Callable, Optional, Tuple, TypeVar
22+
from typing import Optional, Tuple, TypeVar
2323

2424
T = TypeVar("T")
2525

patterns/structural/3-tier.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Separates presentation, application processing, and data management functions.
44
"""
55

6-
from typing import Dict, KeysView, Optional, Type, TypeVar, Union
6+
from typing import Dict, KeysView, Optional, Union
77

88

99
class Data:

0 commit comments

Comments
 (0)