Skip to content

Commit

Permalink
Code formatting should fit black's constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
jmaslak committed Oct 20, 2023
1 parent 5804578 commit f644d2e
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions circuit_maintenance_parser/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,7 @@ def parse_ical(gcal: Calendar) -> List[Dict]:
# if circuits aren't defined, we insert a fake
# circuit ID on cancelled requests. At least
# EUNetworks has sent some notifications this way.
data["circuits"] = [
CircuitImpact(
circuit_id="None",
impact=Impact("NO-IMPACT")
)
]
data["circuits"] = [CircuitImpact(circuit_id="None", impact=Impact("NO-IMPACT"))]
result.append(data)
return result

Expand Down

0 comments on commit f644d2e

Please sign in to comment.