Skip to content

Commit

Permalink
chore: ignore pyflakes error
Browse files Browse the repository at this point in the history
  • Loading branch information
paulschwarzenberger committed Oct 14, 2024
1 parent b2c893f commit 0c0c2c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/terraform-aws-ca-lambda/utils/certs/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class CsrInfo:
_purposes: list[str] = field(init=False, repr=False)

@property
def sans(self) -> list[str]:
def sans(self) -> list[str]: # noqa: F811
if isinstance(self._sans, list):
return filter_and_validate_sans(self.subject.common_name, self._sans)

Expand All @@ -110,7 +110,7 @@ def sans(self, _sans: list[str]) -> None:
self._sans = _sans

@property
def purposes(self) -> list[str]:
def purposes(self) -> list[str]: # noqa: F811
if isinstance(self._purposes, list):
return filter_and_validate_purposes(self._purposes)
return ["client_auth"]
Expand Down

0 comments on commit 0c0c2c3

Please sign in to comment.