Skip to content

Commit b7789ac

Browse files
committed
add noqa to func
1 parent 89f833c commit b7789ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

amadeus/mixins/parser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ def _detect_error(self, client):
1515
if error is not None:
1616
self.__raise_error(error, client)
1717

18-
@staticmethod # noqa: C901
19-
def error_for(status_code, parsed):
18+
@staticmethod
19+
def error_for(status_code, parsed): # noqa: C901
2020
if status_code is None:
2121
return NetworkError
2222
if status_code >= 500:

0 commit comments

Comments
 (0)