Skip to content

Commit

Permalink
style: imports ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
fstagni committed Sep 11, 2024
1 parent 5027310 commit 02f94a2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
1 change: 1 addition & 0 deletions src/DIRAC/Core/LCG/GOCDBClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from xml.dom import minidom

import requests

from DIRAC import S_ERROR, S_OK, gLogger
from DIRAC.Core.Security.Locations import getCAsLocation

Expand Down
15 changes: 7 additions & 8 deletions src/DIRAC/ResourceStatusSystem/Command/DowntimeCommand.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,25 @@
GOCDB downtimes that are modified or deleted are also synced.
"""
import re
from urllib.error import URLError
from datetime import datetime, timedelta
from operator import itemgetter
from urllib.error import URLError

from DIRAC import S_OK, S_ERROR, gConfig
from DIRAC.Core.LCG.GOCDBClient import GOCDBClient
from DIRAC.Core.Utilities.SiteSEMapping import getSEHosts, getStorageElementsHosts
from DIRAC import S_ERROR, S_OK, gConfig
from DIRAC.ConfigurationSystem.Client.Helpers.Path import cfgPath
from DIRAC.ConfigurationSystem.Client.Helpers.Resources import (
getCESiteMapping,
getFTS3Servers,
getGOCFTSName,
getGOCSiteName,
getGOCSites,
getGOCFTSName,
getCESiteMapping,
)
from DIRAC.Core.LCG.GOCDBClient import GOCDBClient
from DIRAC.Core.Utilities.SiteSEMapping import getSEHosts, getStorageElementsHosts
from DIRAC.Resources.Storage.StorageElement import StorageElement
from DIRAC.ResourceStatusSystem.Client.ResourceManagementClient import ResourceManagementClient
from DIRAC.ResourceStatusSystem.Command.Command import Command


# conversion from DIRAC resource type to GOCDB service type
diracToGOC_conversion = {
# Computing elements
Expand Down Expand Up @@ -146,7 +145,7 @@ def _prepareCommand(self):
else:
elementName = gocSite["Value"]

# The DIRAC se names mean nothing on the grid, but their hosts and service types do mean.
# The DIRAC SE names mean nothing on the grid, but their hosts and service types do mean.
elif elementType == "StorageElement":
# Get the SE object and its protocols
try:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
""" Test_RSS_Command_GOCDBStatusCommand
"""
from datetime import datetime, timedelta

from unittest import mock

import pytest

from DIRAC import gLogger, S_OK
from DIRAC import S_OK, gLogger
from DIRAC.ResourceStatusSystem.Command.DowntimeCommand import DowntimeCommand

"""
Expand Down

0 comments on commit 02f94a2

Please sign in to comment.