Skip to content

Commit

Permalink
Fix isort issues
Browse files Browse the repository at this point in the history
  • Loading branch information
srp3rd committed Mar 11, 2024
1 parent 1a429b5 commit ea2dbbe
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bin.src/rucio-integration-register
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import sys

from lsst.daf.butler import Butler
from lsst.dm.rucio.register.app_parser import AppParser
from lsst.dm.rucio.register.rucio_register_config import RucioRegisterConfig
from lsst.dm.rucio.register.rucio_interface import RucioInterface
from lsst.dm.rucio.register.rucio_register_config import RucioRegisterConfig

logger = logging.getLogger(__name__)

Expand Down
1 change: 1 addition & 0 deletions python/lsst/dm/rucio/register/dataset_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>.

import sys

import yaml


Expand Down
4 changes: 2 additions & 2 deletions python/lsst/dm/rucio/register/rucio_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
import zlib

import lsst.daf.butler
from lsst.dm.rucio.register.resource_bundle import ResourceBundle
import rucio.common.exception
from lsst.dm.rucio.register.dataset_map import DatasetMap
from lsst.dm.rucio.register.resource_bundle import ResourceBundle
from lsst.resources import ResourcePath
from rucio.client.didclient import DIDClient
from rucio.client.replicaclient import ReplicaClient
import rucio.common.exception

__all__ = ["RucioInterface"]

Expand Down
1 change: 1 addition & 0 deletions python/lsst/dm/rucio/register/rucio_register_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>.

import os

import yaml

RUCIO_REGISTER_CONFIG = "RUCIO_REGISTER_CONFIG"
Expand Down
4 changes: 3 additions & 1 deletion tests/test_app_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@
import logging
import os
import unittest

import lsst.utils.tests
from lsst.dm.rucio.register.app_parser import AppParser
from lsst.dm.rucio.register.app_parser import AppParser


class AppParserTestCase(unittest.TestCase):

Expand Down
4 changes: 3 additions & 1 deletion tests/test_dataset_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@

import os
import unittest

import lsst.utils.tests
from lsst.dm.rucio.register.dataset_map import DatasetMap
from lsst.dm.rucio.register.dataset_map import DatasetMap


class DatasetMapTestCase(unittest.TestCase):

Expand Down
3 changes: 2 additions & 1 deletion tests/test_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@
import lsst.utils.tests
from lsst.daf.butler import Butler, DatasetRef, FileDataset
from lsst.daf.butler.registry import DatasetTypeError, MissingCollectionError
from lsst.dm.rucio.register.rucio_register_config import RucioRegisterConfig
from lsst.dm.rucio.register.rucio_interface import RucioInterface
from lsst.dm.rucio.register.rucio_register_config import RucioRegisterConfig
from lsst.pipe.base import Instrument
from lsst.resources import ResourcePath


class InterfaceTestCase(lsst.utils.tests.TestCase):

def setUp(self):
Expand Down
4 changes: 3 additions & 1 deletion tests/test_resource_bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@

import os
import unittest

import lsst.utils.tests
from lsst.dm.rucio.register.resource_bundle import ResourceBundle
from lsst.dm.rucio.register.resource_bundle import ResourceBundle


class ResourceBundleTestCase(unittest.TestCase):

Expand Down
4 changes: 3 additions & 1 deletion tests/test_rucio_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@

import os
import unittest

import lsst.utils.tests
from lsst.dm.rucio.register.rucio_register_config import RucioRegisterConfig
from lsst.dm.rucio.register.rucio_register_config import RucioRegisterConfig


class RucioRegisterConfigTestCase(unittest.TestCase):

Expand Down

0 comments on commit ea2dbbe

Please sign in to comment.