Skip to content

Commit

Permalink
Silent overwide method error
Browse files Browse the repository at this point in the history
Since any change to this method spec may be breaking to users and we cannot also move get method declaration in Base class we need to silent it and accept potential risk
  • Loading branch information
Michal Ploski committed Jan 16, 2022
1 parent fae56ef commit 0c55c97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws_lambda_powertools/utilities/parameters/ssm.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def __init__(self, config: Optional[Config] = None, boto3_session: Optional[boto

super().__init__()

def get(
def get( # type: ignore[override]
self,
name: str,
max_age: int = DEFAULT_MAX_AGE_SECS,
Expand Down

0 comments on commit 0c55c97

Please sign in to comment.