Skip to content

Commit

Permalink
full fix for import sorting ..
Browse files Browse the repository at this point in the history
lets see if this conflicts with black
  • Loading branch information
bernt-matthias committed Nov 17, 2023
1 parent c377206 commit 80c9f91
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
7 changes: 6 additions & 1 deletion lib/galaxy/metadata/set_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@
import traceback
from functools import partial
from pathlib import Path
from typing import Any, Dict, List, Optional
from typing import (
Any,
Dict,
List,
Optional,
)

try:
from pulsar.client.staging import COMMAND_VERSION_FILENAME
Expand Down
5 changes: 4 additions & 1 deletion lib/galaxy/tool_util/output_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
from galaxy.tool_util.parser.stdio import StdioErrorLevel

if TYPE_CHECKING:
from galaxy.tool_util.parser.stdio import ToolStdioExitCode, ToolStdioRegex
from galaxy.tool_util.parser.stdio import (
ToolStdioExitCode,
ToolStdioRegex,
)

log = getLogger(__name__)

Expand Down

0 comments on commit 80c9f91

Please sign in to comment.