Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianPugh committed Oct 24, 2023
1 parent 19ac9ed commit a0fdbfd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/test_abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Pikachu(Pokemon):


def test_abc_multiple_inheritence_first():
"""The programmer doesn't know inheritting from ABC is superfluous."""
"""The programmer doesn't know inheriting from ABC is superfluous."""

class Pokemon(ABC, Registry):
@abstractmethod
Expand All @@ -58,7 +58,7 @@ class Pikachu(Pokemon):


def test_abc_multiple_inheritence_last():
"""The programmer doesn't know inheritting from ABC is superfluous."""
"""The programmer doesn't know inheriting from ABC is superfluous."""

class Pokemon(Registry, ABC):
@abstractmethod
Expand Down
4 changes: 2 additions & 2 deletions tests/test_meta_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_extended_registry():
foo = Foo()
bar = Bar()

assert foo.extended_attribute == "Foo"
assert bar.extended_attribute == "Bar"
assert foo.extended_attribute == "Foo" # pyright: ignore[reportGeneralTypeIssues]
assert bar.extended_attribute == "Bar" # pyright: ignore[reportGeneralTypeIssues]

assert list(Foo) == ["bar"]

0 comments on commit a0fdbfd

Please sign in to comment.