Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
arroyoAle committed May 7, 2024
1 parent 11d2de1 commit cae67ed
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion secure_message/exception/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@


class MessageSaveException(HTTPException):

"""This exception is used when the service fails to save a secure message"""

code = 500
Expand Down
3 changes: 0 additions & 3 deletions secure_message/resources/health.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@


class Health(Resource):

"""Rest endpoint to provide application general health"""

@staticmethod
Expand All @@ -20,7 +19,6 @@ def get():


class DatabaseHealth(Resource):

"""Rest endpoint to provide application database health"""

@staticmethod
Expand All @@ -29,7 +27,6 @@ def get():


class HealthDetails(Resource):

"""Rest endpoint to provide application details"""

@staticmethod
Expand Down
1 change: 0 additions & 1 deletion secure_message/resources/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@


class Info(Resource):

"""Rest endpoint to provide application information"""

@staticmethod
Expand Down
2 changes: 0 additions & 2 deletions secure_message/validation/domain.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@


class Message:

"""Class to hold message attributes"""

def __init__(
Expand Down Expand Up @@ -65,7 +64,6 @@ def __eq__(self, other):


class MessageSchema(Schema):

"""Class to marshal JSON to Message"""

msg_id = fields.Str(allow_none=True)
Expand Down
1 change: 0 additions & 1 deletion secure_message/validation/thread.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@


class ThreadPatch(Schema):

"""Class to marshal JSON to Message"""

category = fields.Str()
Expand Down

0 comments on commit cae67ed

Please sign in to comment.