Skip to content

Commit fcf65ec

Browse files
committed
Fix formatting
1 parent 8ba96bf commit fcf65ec

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

lib/galaxy/managers/notification.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import logging
2+
from collections.abc import Callable
23
from datetime import datetime
34
from enum import Enum
45
from typing import (
@@ -7,7 +8,6 @@
78
Optional,
89
Union,
910
)
10-
from collections.abc import Callable
1111
from urllib.parse import urlparse
1212

1313
from pydantic import (

test/integration/objectstore/test_bulk_storage_operations.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@
3333
)
3434
from ._base import BaseObjectStoreIntegrationTestCase
3535

36-
DISTRIBUTED_OBJECT_STORE_CONFIG_TEMPLATE = string.Template(
37-
"""<?xml version="1.0"?>
36+
DISTRIBUTED_OBJECT_STORE_CONFIG_TEMPLATE = string.Template("""<?xml version="1.0"?>
3837
<object_store type="distributed" id="primary" order="0">
3938
<backends>
4039
<backend id="default" allow_selection="true" type="disk" weight="1" device="tmp_disk">
@@ -61,8 +60,7 @@
6160
</backend>
6261
</backends>
6362
</object_store>
64-
"""
65-
)
63+
""")
6664

6765
DEFAULT_OBJECT_STORE_ID = "default"
6866
OTHER_OBJECT_STORE_ID = "other"

0 commit comments

Comments
 (0)