You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
venv/lib/python3.8/site-packages/watchtower/__init__.py:216: in CloudWatchLogHandler
log_group_tags: dict[str, str] = {},
E TypeError: 'type' object is not subscriptable
Looks like missing a from __future__ import annotations from the top (the init.py used to use from Typing import....)
The text was updated successfully, but these errors were encountered:
Same issue here, but weirdly I tried pinning to 3.2.0 yesterday and it didn't work. Today I pinned boto to 1.34.117 (my last known working version) and now my deploy is working again but watchtower is still 3.3.0 in my lockfile.
Looks like missing a
from __future__ import annotations
from the top (the init.py used to use from Typing import....)The text was updated successfully, but these errors were encountered: