Skip to content

Commit

Permalink
Fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
eivindjahren committed Jul 23, 2024
1 parent 482489d commit 824ac32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/semeio/workflows/localisation/localisation_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class ObsConfig(BaseModel):
add: Union[str, List[str]]
remove: Optional[Union[str, List[str]]] = None

@computed_field # type: ignore[misc]
@computed_field # type: ignore[prop-decorator]
@property
def result_items(self) -> List[str]:
res = _check_specification(self.add, self.remove, self.context)
Expand Down

0 comments on commit 824ac32

Please sign in to comment.