|
1 | 1 | import enum
|
2 |
| -from datetime import datetime |
| 2 | +from datetime import datetime, timezone |
3 | 3 | from typing import Optional, List
|
4 | 4 |
|
5 | 5 | from implicitdict import ImplicitDict, StringBasedDateTime, StringBasedTimeDelta
|
@@ -87,12 +87,12 @@ class NormalUsageData(ImplicitDict):
|
87 | 87 |
|
88 | 88 | bar: int = 0
|
89 | 89 | """The bar of the data.
|
90 |
| - |
| 90 | +
|
91 | 91 | Indents should not be included in docstrings."""
|
92 | 92 |
|
93 | 93 | baz: Optional[float]
|
94 | 94 | """If this baz is specified, it provides additional information.
|
95 |
| - |
| 95 | +
|
96 | 96 | Final docstring newlines should be omitted.
|
97 | 97 | """
|
98 | 98 |
|
@@ -171,12 +171,12 @@ class SpecialTypesData(ImplicitDict):
|
171 | 171 |
|
172 | 172 | @staticmethod
|
173 | 173 | def example_value():
|
174 |
| - return ImplicitDict.parse({"datetime": datetime.utcnow().isoformat(), "timedelta": "12h", "yesno": "Yes", "boolean": "true"}, SpecialTypesData) |
| 174 | + return ImplicitDict.parse({"datetime": datetime.now(timezone.utc).isoformat(), "timedelta": "12h", "yesno": "Yes", "boolean": "true"}, SpecialTypesData) |
175 | 175 |
|
176 | 176 |
|
177 | 177 | class NestedDefinitionsData(ImplicitDict):
|
178 | 178 | special_types: SpecialTypesData
|
179 | 179 |
|
180 | 180 | @staticmethod
|
181 | 181 | def example_value():
|
182 |
| - return ImplicitDict.parse({"special_types": {"datetime": datetime.utcnow().isoformat(), "timedelta": "12h", "yesno": "Yes", "boolean": "true"}}, NestedDefinitionsData) |
| 182 | + return ImplicitDict.parse({"special_types": {"datetime": datetime.now(timezone.utc).isoformat(), "timedelta": "12h", "yesno": "Yes", "boolean": "true"}}, NestedDefinitionsData) |
0 commit comments