MCPcopy Create free account
hub / github.com/feast-dev/feast / maybe_local_tz

Function maybe_local_tz

sdk/python/feast/utils.py:173–177  ·  view source on GitHub ↗
(t: datetime)

Source from the content-addressed store, hash-verified

171
172
173def maybe_local_tz(t: datetime) -> datetime:
174 if t.tzinfo is None:
175 return t.replace(tzinfo=tzlocal())
176 else:
177 return t
178
179
180def get_default_yaml_file_path(repo_path: Path) -> Path:

Callers 1

validateFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected