Skip to content

Commit b103ed8

Browse files
committed
format
1 parent b814b90 commit b103ed8

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

maas/client/bones/__init__.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -337,9 +337,11 @@ def __init__(self, request, response, content, call):
337337
desc = "%s -> %s (%s)" % (
338338
desc_for_request,
339339
desc_for_response,
340-
desc_for_content
341-
if len(desc_for_content) <= 50
342-
else (desc_for_content[:49] + "…"),
340+
(
341+
desc_for_content
342+
if len(desc_for_content) <= 50
343+
else (desc_for_content[:49] + "…")
344+
),
343345
)
344346
super(CallError, self).__init__(desc)
345347
self.request = request

maas/client/errors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Custom errors for libmaas """
1+
"""Custom errors for libmaas"""
22

33
__all__ = ["MAASException", "OperationNotAllowed"]
44

maas/client/viscera/testing/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Testing framework for maas.client.viscera """
1+
"""Testing framework for maas.client.viscera"""
22

33
__all__ = ["bind"]
44

0 commit comments

Comments
 (0)