Skip to content

Commit 3fd7c8d

Browse files
Fix tests
1 parent 71279cd commit 3fd7c8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_templates/test_property_templates/test_date_property/required_nullable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from dateutil.parser import isoparse
55
some_source = date(2020, 10, 12)
6-
some_destination = some_source.isoformat() if some_source else None
6+
some_destination = some_source.isoformat() if some_source else None
77
a_prop = None
88
_a_prop = some_destination
99
if _a_prop is not None:

0 commit comments

Comments
 (0)