Skip to content

Commit af47f2a

Browse files
committed
Linting fix
1 parent dc8867b commit af47f2a

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
@@ -330,7 +330,7 @@ def validate_properties_and_return_model(self, cls: Type[RT]) -> RT:
330330
try:
331331
return cls.parse_obj(self._generate_resource_dict()["Properties"])
332332
except ValidationError as e:
333-
error_properties = ""
333+
error_properties: str = ""
334334
with suppress(KeyError):
335335
error_properties = ", ".join([error["loc"][0] for error in e.errors()])
336336
raise InvalidResourceException(

0 commit comments

Comments
 (0)