Skip to content

Commit 912544c

Browse files
committed
LazyToolBox: black format fix
Black --check failed on the upstream PR's Python 3.14 format job — one multi-line log.warning was inside black's max line length, so it wanted it on one line.
1 parent fef8ff0 commit 912544c

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

lib/galaxy/tools/lazy_toolbox.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1034,9 +1034,7 @@ def _build_index_entry_from_stored(self, stored: StoredToolSource) -> Optional[T
10341034
tool_source_class=stored.tool_source_class,
10351035
)
10361036
except Exception as e:
1037-
log.warning(
1038-
f"Error re-parsing stored tool source (id={stored.tool_id}, hash={stored.hash}): {e}"
1039-
)
1037+
log.warning(f"Error re-parsing stored tool source (id={stored.tool_id}, hash={stored.hash}): {e}")
10401038
return None
10411039
return self._make_index_entry(
10421040
tool_source=tool_source,

0 commit comments

Comments
 (0)