Skip to content

Commit

Permalink
fix(shared-data): add type ignore in test (#13476)
Browse files Browse the repository at this point in the history
This is testing a splat that loses types and just doesn't really work
with type annotations sadly. Removing the types fixes the issue.
  • Loading branch information
sfoster1 authored Sep 6, 2023
1 parent 9eaa1f7 commit 121841f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -262,5 +262,5 @@ def test_build_mutable_config_using_old_units() -> None:
"max": 30,
}
assert (
types.MutableConfig.build(**old_units_config, name="dropTipSpeed") is not None
types.MutableConfig.build(**old_units_config, name="dropTipSpeed") is not None # type: ignore
)

0 comments on commit 121841f

Please sign in to comment.