Skip to content

Commit d74150f

Browse files
committed
Reformat code with black
1 parent da1ee21 commit d74150f

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

graphql/execution/utils.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -150,11 +150,7 @@ def report_error(self, error, traceback=None):
150150
# type: (Exception, Optional[TracebackType]) -> None
151151
logger.exception(
152152
error,
153-
exc_info=(
154-
type(error),
155-
error,
156-
getattr(error, "stack", None) or traceback,
157-
)
153+
exc_info=(type(error), error, getattr(error, "stack", None) or traceback),
158154
)
159155
self.errors.append(error)
160156

0 commit comments

Comments
 (0)