Skip to content

Commit

Permalink
removed type ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
TamarZanzouri committed Dec 23, 2024
1 parent efa879a commit a1fe6a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def absorbance_def() -> LabwareDefinition:
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 @@ -41,7 +41,7 @@ def absorbance_def() -> LabwareDefinition:
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 a1fe6a5

Please sign in to comment.