Skip to content
Snippets Groups Projects
Commit afff6f73 authored by Petr Kalashnikov's avatar Petr Kalashnikov
Browse files

Fix indentation

parent b2419349
No related branches found
No related tags found
2 merge requests!13Fsho12, del 1: mulighet å returnere en liste av batcher uten vouchere,!11FSHO10: support filtering of batches in list from setra
Pipeline #67496 failed
......@@ -31,20 +31,20 @@ class BaseModel(pydantic.BaseModel):
class BatchProgressEnum(Enum):
CREATED = 'created'
VALIDATION_COMPLETED = 'validation_completed'
VALIDATION_FAILED = 'validation_failed'
SENT_TO_UBW = 'sent_to_ubw'
SEND_TO_UBW_FAILED = 'send_to_ubw_failed'
POLLING_COMPLETED = 'polling_completed'
POLLING_FAILED = 'polling_failed'
UBW_IMPORT_OK = 'ubw_import_ok'
UBW_IMPORT_FAILED = 'ubw_import_failed'
FETCH_FINAL_VOUCHERNO_COMPLETED = 'fetch_final_voucherno_completed'
FETCH_FINAL_VOUCHERNO_FAILED = 'fetch_final_voucherno_failed'
def __str__(self):
return str(self.value)
CREATED = 'created'
VALIDATION_COMPLETED = 'validation_completed'
VALIDATION_FAILED = 'validation_failed'
SENT_TO_UBW = 'sent_to_ubw'
SEND_TO_UBW_FAILED = 'send_to_ubw_failed'
POLLING_COMPLETED = 'polling_completed'
POLLING_FAILED = 'polling_failed'
UBW_IMPORT_OK = 'ubw_import_ok'
UBW_IMPORT_FAILED = 'ubw_import_failed'
FETCH_FINAL_VOUCHERNO_COMPLETED = 'fetch_final_voucherno_completed'
6FETCH_FINAL_VOUCHERNO_FAILED = 'fetch_final_voucherno_failed'
def __str__(self):
return str(self.value)
class Transaction(BaseModel):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment