Skip to content

Commit 887f3cc

Browse files
author
yangchoo
committed
explicit ignore lint, revert to master
1 parent e45ee4a commit 887f3cc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

transcriptic/config.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1106,9 +1106,11 @@ def get_route(self, method, **kwargs):
11061106
input_args.append(arg_dict[arg])
11071107
else:
11081108
raise Exception(
1109-
f"For route: {method}, argument {arg} needs " f"to be provided."
1109+
f"For route: {method}, argument {arg} needs to be provided."
11101110
)
1111-
return route_method(*tuple(input_args))
1111+
return route_method( # pylint: disable=no-value-for-parameter
1112+
*tuple(input_args)
1113+
)
11121114

11131115
def get(self, route, **kwargs):
11141116
return self._call("get", route, **kwargs)

0 commit comments

Comments
 (0)