Skip to content

Commit f13f0e8

Browse files
committed
lint
1 parent 34e2869 commit f13f0e8

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

  • python/lib/sift_py/ingestion/_internal

python/lib/sift_py/ingestion/_internal/ingest.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,10 @@ def attach_run(
190190
Include `force_new=True` to force the creation of a new run, which will allow creation of a new run using an existing name.
191191
"""
192192
if self._ingestion_thread.is_alive():
193-
raise IngestionValidationError("Cannot attach run while ingestion thread is running. Invoke before ingesting.")
194-
193+
raise IngestionValidationError(
194+
"Cannot attach run while ingestion thread is running. Invoke before ingesting."
195+
)
196+
195197
if not force_new:
196198
run_id = get_run_id_by_name(channel, run_name)
197199

0 commit comments

Comments
 (0)