Skip to content

Commit

Permalink
Wrap line
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredoconnell committed Nov 8, 2024
1 parent 5d0f2da commit 1c1fb0f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/arcaflow_plugin_sdk/test_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -963,7 +963,8 @@ class TestData1:
default="", metadata={"id": "test-field", "name": "G"}
)
I: typing.Any = None
J: typing.List[typing.Dict[str, str]] = dataclasses.field(default_factory=list)
J: typing.List[typing.Dict[str, str]] \
= dataclasses.field(default_factory=list)

schema.test_object_serialization(
TestData1(A="Hello world!", B=5, C={}, D=[], H=3.14),
Expand Down

0 comments on commit 1c1fb0f

Please sign in to comment.