Skip to content

Commit 496847d

Browse files
committed
Fix type errors introduced in #201
1 parent b0487ca commit 496847d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

watchtower/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from collections.abc import Mapping
1212
from datetime import date, datetime, timezone
1313
from operator import itemgetter
14-
from typing import Any, Callable, List, Optional, Tuple
14+
from typing import Any, Callable, Dict, List, Optional, Tuple
1515

1616
import boto3
1717
import botocore
@@ -213,7 +213,7 @@ def __init__(
213213
boto3_client: botocore.client.BaseClient = None,
214214
boto3_profile_name: Optional[str] = None,
215215
create_log_group: bool = True,
216-
log_group_tags: dict[str, str] = {},
216+
log_group_tags: Dict[str, str] = {},
217217
json_serialize_default: Optional[Callable] = None,
218218
log_group_retention_days: Optional[int] = None,
219219
create_log_stream: bool = True,

0 commit comments

Comments
 (0)