Skip to content

Commit

Permalink
Fix typing errors
Browse files Browse the repository at this point in the history
  • Loading branch information
gerlero committed Jul 25, 2024
1 parent 278d095 commit c8094cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ def test_get_component() -> None:
assert isinstance(c, Constituent)
assert c.name == "LYSINE"
assert c.name in database
assert c in database
assert c in database # type: ignore [comparison-overlap]
assert c.name not in database.user_defined()
assert c not in database.user_defined()
assert c not in database.user_defined() # type: ignore [comparison-overlap]
assert len(c.mobilities()) == 6
assert len(c.pkas()) == 6
print(c.mobilities())
Expand Down

0 comments on commit c8094cf

Please sign in to comment.