Linting
This commit is contained in:
parent
3ece2dabff
commit
888e0c31a0
7 changed files with 96 additions and 140 deletions
|
|
@ -4,10 +4,12 @@ from moto.core.exceptions import RESTError
|
|||
class InvalidParameterValueError(RESTError):
|
||||
def __init__(self, message):
|
||||
super(InvalidParameterValueError, self).__init__(
|
||||
"InvalidParameterValue", message)
|
||||
"InvalidParameterValue", message
|
||||
)
|
||||
|
||||
|
||||
class ResourceNotFoundException(RESTError):
|
||||
def __init__(self, message):
|
||||
super(ResourceNotFoundException, self).__init__(
|
||||
"ResourceNotFoundException", message)
|
||||
"ResourceNotFoundException", message
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue