Skip to content

Commit 18f5129

Browse files
committed
Fix lint error
1 parent 533e33e commit 18f5129

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

signxml/algorithms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def _missing_(cls, value):
5050
raise InvalidInput(f"Unrecognized {cls.__name__}: {value}")
5151

5252
def __repr__(self):
53-
return f"{self.__class__.__name__}.{self.name}"
53+
return f"{self.__class__.__name__}.{self.name}" # type: ignore
5454

5555

5656
class DigestAlgorithm(FragmentLookupMixin, InvalidInputErrorMixin, Enum):

0 commit comments

Comments
 (0)