Skip to content

Commit

Permalink
Fixed import sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
sveinugu committed Oct 6, 2023
1 parent 2061048 commit 3ebfc3c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/galaxy/model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,11 @@
from galaxy.util import (
directory_hash_id,
enum_values,
hex_to_lowercase_alphanum,
listify,
ready_name_for_url,
unicodify,
unique_id,
hex_to_lowercase_alphanum,
)
from galaxy.util.dictifiable import (
dict_for,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@
Create Date: 2023-10-05 02:09:32.888292
"""
from sqlalchemy import Column, Text, Boolean
from sqlalchemy import (
Boolean,
Column,
Text,
)

from galaxy.model.migrations.util import (
add_column,
Expand Down
4 changes: 2 additions & 2 deletions lib/galaxy/security/idencoding.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@

import galaxy.exceptions
from galaxy.util import (
smart_str,
unicodify,
hex_to_lowercase_alphanum,
lowercase_alphanum_to_hex,
smart_str,
unicodify,
)

log = logging.getLogger(__name__)
Expand Down

0 comments on commit 3ebfc3c

Please sign in to comment.