Skip to content

Commit

Permalink
Fix indentation of SubmissionResponse (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmargaritis authored Feb 20, 2024
1 parent 817f8e0 commit 666ea27
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions ergani/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,16 +373,17 @@ 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 666ea27

Please sign in to comment.