Skip to content

Commit

Permalink
Fix type errors introduced in #201
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Aug 21, 2024
1 parent b0487ca commit 496847d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions watchtower/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from collections.abc import Mapping
from datetime import date, datetime, timezone
from operator import itemgetter
from typing import Any, Callable, List, Optional, Tuple
from typing import Any, Callable, Dict, List, Optional, Tuple

import boto3
import botocore
Expand Down Expand Up @@ -213,7 +213,7 @@ def __init__(
boto3_client: botocore.client.BaseClient = None,
boto3_profile_name: Optional[str] = None,
create_log_group: bool = True,
log_group_tags: dict[str, str] = {},
log_group_tags: Dict[str, str] = {},
json_serialize_default: Optional[Callable] = None,
log_group_retention_days: Optional[int] = None,
create_log_stream: bool = True,
Expand Down

0 comments on commit 496847d

Please sign in to comment.