Skip to content

Commit ae1d17c

Browse files
committed
ignore
1 parent 7e276c8 commit ae1d17c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samtranslator/model/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ def validate_properties_and_return_model(self, cls: Type[RT]) -> RT:
345345
"""
346346
try:
347347
return cls.parse_obj(self._generate_resource_dict()["Properties"])
348-
except pydantic.error_wrappers.ValidationError as e: # type: ignore
348+
except pydantic.error_wrappers.ValidationError as e:
349349
error_properties: str = ""
350350
with suppress(KeyError):
351351
error_properties = ".".join(str(x) for x in e.errors()[0]["loc"])

0 commit comments

Comments
 (0)