Skip to content

Commit 8fd1cdc

Browse files
committed
ignore
1 parent d059423 commit 8fd1cdc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

samtranslator/model/__init__.py

Lines changed: 1 addition & 1 deletion
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)