Skip to content

Commit b9f7703

Browse files
fix lint
1 parent 125a4b2 commit b9f7703

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

linode_api4/objects/linode.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,10 @@ def ips(self):
465465
result["ipv6"]["link_local"],
466466
)
467467

468-
pools = [IPv6Range(self._client, r["range"]) for r in result["ipv6"]["global"]]
468+
pools = [
469+
IPv6Range(self._client, r["range"])
470+
for r in result["ipv6"]["global"]
471+
]
469472

470473
ips = MappedObject(
471474
**{

0 commit comments

Comments
 (0)