Handle closed-time typos from SWP API and update local dev setup (#32)

* updated dependencies, fixed "geschlossen" parsing

* httpretty.core warning patch

---------

Co-authored-by: Hadrian Burkhardt <hadrian.burkhardt@gmx.de>
This commit is contained in:
2026-02-18 23:00:09 +01:00
committed by GitHub
parent a31cfd4f4e
commit 68e092b06e
14 changed files with 1178 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
import datetime as _dt
import httpretty.core as _httpretty_core
class _PatchedDateTime(_dt.datetime):
@classmethod
def utcnow(cls):
return _dt.datetime.now(_dt.UTC)
def pytest_configure():
_httpretty_core.datetime = _PatchedDateTime