We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b566a4e + e8ae35f commit e2d0b89Copy full SHA for e2d0b89
frouros/detectors/base.py
@@ -74,5 +74,6 @@ def __repr__(self) -> str:
74
"""
75
return (
76
f"{self.__class__.__name__}"
77
- f"(callbacks=[{', '.join(self.callbacks)}])" # type: ignore
+ f"(callbacks=["
78
+ f"{', '.join([*map(str, self.callbacks)])}])" # type: ignore
79
)
0 commit comments