Skip to content

Commit

Permalink
unused ignore after setup
Browse files Browse the repository at this point in the history
  • Loading branch information
TamarZanzouri committed Dec 24, 2024
1 parent c5e10fd commit 9c6e049
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
@pytest.fixture
def absorbance_def() -> LabwareDefinition:
"""Get a tip rack Pydantic model definition value object."""
return LabwareDefinition.construct( # type:ignore[call-arg]
return LabwareDefinition.construct(
namespace="test",
version=1,
parameters=Parameters.construct( # type:ignore[call-arg]
parameters=Parameters.construct(
loadName="cool-labware",
tipOverlap=None, # add a None value to validate serialization to dictionary
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
@pytest.fixture
def absorbance_def() -> LabwareDefinition:
"""Get a tip rack Pydantic model definition value object."""
return LabwareDefinition.construct( # type:ignore[call-arg]
return LabwareDefinition.construct(
namespace="test",
version=1,
parameters=Parameters.construct( # type:ignore[call-arg]
parameters=Parameters.construct(
loadName="cool-labware",
tipOverlap=None, # add a None value to validate serialization to dictionary
),
Expand Down

0 comments on commit 9c6e049

Please sign in to comment.