Skip to content

Commit

Permalink
fix: correct identation of SubmissionResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
gmargaritis committed Feb 20, 2024
1 parent 817f8e0 commit 6a5a0d7
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions ergani/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,16 +373,16 @@ def serialize(self):
},
}

class SubmissionResponse(TypedDict):
"""
Represents a submission response from the Ergani API
Attributes:
submission_id (str): The unique identifier of the submission
protocol (str): The protocol associated with the submission
submission_date (datetime): The datetime of the submission
"""

submission_id: str
protocol: str
submission_date: datetime
class SubmissionResponse(TypedDict):
"""
Represents a submission response from the Ergani API
Attributes:
submission_id (str): The unique identifier of the submission
protocol (str): The protocol associated with the submission
submission_date (datetime): The datetime of the submission
"""

submission_id: str
protocol: str
submission_date: datetime

0 comments on commit 6a5a0d7

Please sign in to comment.