Skip to content

Commit 72371e7

Browse files
Set confirmed status through correct method
1 parent 386ebeb commit 72371e7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

circuit_maintenance_parser/parsers/telxius.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,6 @@ def parse_subject(self, subject: str) -> List[Dict]:
104104
elif parse_subject[1] == "COMPLETED":
105105
data["status"] = Status("COMPLETED")
106106
else:
107-
data["status"] = "CONFIRMED"
107+
data["status"] = Status("CONFIRMED")
108108

109109
return [data]

0 commit comments

Comments
 (0)