Skip to content
This repository was archived by the owner on Mar 4, 2026. It is now read-only.

Commit 9dd9416

Browse files
author
Yohann Leon
committed
Fix pyling errors
1 parent 061a418 commit 9dd9416

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

packet/HardwareReservation.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def __init__(self, data, manager):
2121
self.custom_rate = data.get("custom_rate")
2222
self.remove_at = data.get("remove_at")
2323
self.project = data.get("project")
24-
#self.facility = data.get("facility")
24+
# self.facility = data.get("facility")
2525
self.device = data.get("device")
2626
self.provisionable = data.get("provisionable")
2727
self.spare = data.get("spare")
@@ -38,13 +38,13 @@ def __init__(self, data, manager):
3838
self.attached_to = None
3939

4040
# endpoint is not working yet
41-
#try:
42-
# facility_data = self.manager.call_api(
43-
# data["facility"]["href"], type="GET"
44-
# )
45-
# self.project = Facility(facility_data, self.manager)
46-
#except (KeyError, IndexError):
47-
# self.attached_to = None
41+
# try:
42+
# facility_data = self.manager.call_api(
43+
# data["facility"]["href"], type="GET"
44+
# )
45+
# self.project = Facility(facility_data, self.manager)
46+
# except (KeyError, IndexError):
47+
# self.attached_to = None
4848

4949
try:
5050
device_data = self.manager.call_api(

0 commit comments

Comments
 (0)