Skip to content

Commit

Permalink
isort
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias committed Jun 14, 2023
1 parent f414a1d commit 284e93c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
5 changes: 1 addition & 4 deletions galaxyxml/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
from builtins import (
object,
str
)
from builtins import object, str

from lxml import etree

Expand Down
6 changes: 3 additions & 3 deletions galaxyxml/tool/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import copy
import logging

from lxml import etree

from galaxyxml import GalaxyXML, Util
from galaxyxml.tool.parameters import (
Expand,
Expand All @@ -9,11 +11,9 @@
Macro,
Macros,
Outputs,
XMLParam
XMLParam,
)

from lxml import etree

VALID_TOOL_TYPES = ("data_source", "data_source_async")
VALID_URL_METHODS = ("get", "post")

Expand Down
8 changes: 2 additions & 6 deletions galaxyxml/tool/parameters/__init__.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
import logging
from builtins import (
object,
str
)
from builtins import object, str

from galaxy.tool_util.parser.util import _parse_name
from lxml import etree

from galaxyxml import Util

from lxml import etree

logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)

Expand Down

0 comments on commit 284e93c

Please sign in to comment.