Skip to content

Commit

Permalink
fixing my linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sydney-runkle committed Jan 29, 2024
1 parent a1e0d5c commit 603d1b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_networks.py
Expand Up @@ -857,7 +857,7 @@ class Model(BaseModel):
assert Model.model_validate_json('{"v":"foo bar <foobaR@example.com>"}').v == NameEmail(
'foo bar', 'foobaR@example.com'
)
assert str(Model.model_validate_json('{"v":"foobaR@example.com"}').v) == 'foobaR <foobaR@example.com>'
assert str(Model.model_validate_json('{"v":"foobaR@example.com"}').v) == 'foobaR <foobaR@example.com>'
assert (
Model(v=NameEmail('foo bar', 'foobaR@example.com')).model_dump_json() == '{"v":"foo bar <foobaR@example.com>"}'
)
Expand Down

0 comments on commit 603d1b4

Please sign in to comment.