🏷️ fix missing type

This commit is contained in:
yanyongyu 2021-12-08 16:46:10 +08:00
parent b64b02bb45
commit 61e17d0de7

View File

@ -127,8 +127,8 @@ class SkippedException(MatcherException):
"""
def __init__(self, param: ModelField, value: Any):
self.param = param
self.value = value
self.param: ModelField = param
self.value: Any = value
def __repr__(self):
return f"<SkippedException, param={self.param}, value={self.value}>"