Skip to content

Commit

Permalink
Add lint ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Drew Meyers committed May 10, 2024
1 parent 51e6978 commit 9968660
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions unity_sps_ogc_processes_api_python_client/models/execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,8 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
return cls.model_validate(obj)

_obj = cls.model_validate({
"inputs": AnyOf.from_dict(obj["inputs"]) if obj.get("inputs") is not None else None,
"outputs": AnyOf.from_dict(obj["outputs"]) if obj.get("outputs") is not None else None,
"inputs": AnyOf.from_dict(obj["inputs"]) if obj.get("inputs") is not None else None, # noqa: F821
"outputs": AnyOf.from_dict(obj["outputs"]) if obj.get("outputs") is not None else None, # noqa: F821
"subscriber": Subscriber.from_dict(obj["subscriber"]) if obj.get("subscriber") is not None else None
})
return _obj


0 comments on commit 9968660

Please sign in to comment.