Skip to content

Commit e25aaff

Browse files
committed
🚨 fix: lint issues
1 parent a071a9e commit e25aaff

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/test_services.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -690,9 +690,11 @@ def __init__(self, cats_controller, service_settings):
690690
def test_alias_dep_resolving():
691691
container = arrange_cats_example()
692692

693-
class BaseClass: ...
693+
class BaseClass:
694+
pass
694695

695-
class DerivedClass(BaseClass): ...
696+
class DerivedClass(BaseClass):
697+
pass
696698

697699
class UsingAliasByType:
698700
def __init__(self, example: BaseClass):

0 commit comments

Comments
 (0)