Skip to content

Commit

Permalink
🚨 fix: lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
StummeJ committed Oct 18, 2024
1 parent a071a9e commit e25aaff
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/test_services.py
Original file line number Diff line number Diff line change
Expand Up @@ -690,9 +690,11 @@ def __init__(self, cats_controller, service_settings):
def test_alias_dep_resolving():
container = arrange_cats_example()

class BaseClass: ...
class BaseClass:
pass

class DerivedClass(BaseClass): ...
class DerivedClass(BaseClass):
pass

class UsingAliasByType:
def __init__(self, example: BaseClass):
Expand Down

0 comments on commit e25aaff

Please sign in to comment.