Skip to content

Commit 79793ca

Browse files
author
Val Brodsky
committed
Fix linting
1 parent 960968b commit 79793ca

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

libs/labelbox/src/labelbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
BufferedJsonConverterOutput,
2727
ExportTask,
2828
BufferedJsonConverterOutput,
29-
StreamType
29+
StreamType,
3030
)
3131
from labelbox.schema.iam_integration import IAMIntegration
3232
from labelbox.schema.identifiable import GlobalKey, UniqueId

libs/lbox-clients/src/lbox/request_client.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,7 @@ def convert_value(value):
248248
settings = self._connection.merge_environment_settings(
249249
prepped.url, {}, None, None, None
250250
)
251-
response = self._connection.send(
252-
prepped, timeout=timeout, **settings
253-
)
251+
response = self._connection.send(prepped, timeout=timeout, **settings)
254252
logger.debug("Response: %s", response.text)
255253
except requests.exceptions.Timeout as e:
256254
raise exceptions.TimeoutError(str(e))

0 commit comments

Comments
 (0)