Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
aquamatthias committed Nov 1, 2023
1 parent 037f843 commit ee7bdfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/aws/resoto_plugin_aws/resource/cognito.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class AwsCognitoUser(AwsResource, BaseUser):
pool_name: Optional[str] = None

def _keys(self) -> Tuple[Any, ...]:
# in case different user pools include the same user: we add the
# in case different user pools include the same user: we add the pool name to the keys
if self.pool_name is not None:
return tuple(list(super()._keys()) + [self.pool_name])
return super()._keys()
Expand Down

0 comments on commit ee7bdfa

Please sign in to comment.