Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Dec 4, 2022
1 parent 533e33e commit 18f5129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion signxml/algorithms.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def _missing_(cls, value):
raise InvalidInput(f"Unrecognized {cls.__name__}: {value}")

def __repr__(self):
return f"{self.__class__.__name__}.{self.name}"
return f"{self.__class__.__name__}.{self.name}" # type: ignore


class DigestAlgorithm(FragmentLookupMixin, InvalidInputErrorMixin, Enum):
Expand Down

0 comments on commit 18f5129

Please sign in to comment.