Skip to content

Commit 0361079

Browse files
committed
our version of pyflake might be ~2.5 which is right around when a fix was introduced. i'm not necessarily worried about this issue but i hate flake workarounds.
1 parent 82a6ca1 commit 0361079

File tree

1 file changed

+2
-2
lines changed
  • unity_sps_ogc_processes_api_python_client/models

1 file changed

+2
-2
lines changed

unity_sps_ogc_processes_api_python_client/models/execute.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
107107
return cls.model_validate(obj)
108108

109109
_obj = cls.model_validate({
110-
"inputs": AnyOf.from_dict(obj["inputs"]) if obj.get("inputs") is not None else None,
111-
"outputs": AnyOf.from_dict(obj["outputs"]) if obj.get("outputs") is not None else None,
110+
"inputs": AnyOf.from_dict(obj["inputs"]) if obj.get("inputs") is not None else None, # noqa: F821
111+
"outputs": AnyOf.from_dict(obj["outputs"]) if obj.get("outputs") is not None else None, # noqa: F821
112112
"subscriber": Subscriber.from_dict(obj["subscriber"]) if obj.get("subscriber") is not None else None
113113
})
114114
return _obj

0 commit comments

Comments
 (0)