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

Commit 8b2263c

Browse files
authored
Merge pull request #60 from packethost/fix-ci
Make CI green again
2 parents 7e6b45f + 65c1858 commit 8b2263c

18 files changed

Lines changed: 313 additions & 240 deletions

packet/Device.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def update(self):
5151
"always_pxe": self.always_pxe,
5252
"ipxe_script_url": self.ipxe_script_url,
5353
"spot_instance": self.spot_instance,
54-
"customdata": self.customdata
54+
"customdata": self.customdata,
5555
}
5656

5757
return self.manager.call_api(

packet/Email.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ def __init__(self, data, manager):
1414
def update(self):
1515
params = {"address": self.address, "default": self.default}
1616

17-
return self.manager.call_api(
18-
"emails/%s" % self.id, type="PATCH", params=params
19-
)
17+
return self.manager.call_api("emails/%s" % self.id, type="PATCH", params=params)
2018

2119
def delete(self):
2220
return self.manager.call_api("emails/%s" % self.id, type="DELETE")

0 commit comments

Comments
 (0)