Skip to content

Commit 8a78825

Browse files
committed
fix: moved RSS to py3 only
1 parent 74fbb97 commit 8a78825

File tree

84 files changed

+50
-601
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+50
-601
lines changed

src/DIRAC/ResourceStatusSystem/Agent/CacheFeederAgent.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,6 @@
88
:dedent: 2
99
:caption: CacheFeederAgent options
1010
"""
11-
from __future__ import absolute_import
12-
from __future__ import division
13-
from __future__ import print_function
14-
15-
__RCSID__ = "$Id$"
16-
1711
from DIRAC import S_OK
1812
from DIRAC.Core.Base.AgentModule import AgentModule
1913
from DIRAC.Core.LCG.GOCDBClient import GOCDBClient

src/DIRAC/ResourceStatusSystem/Agent/ElementInspectorAgent.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,6 @@
1111
:dedent: 2
1212
:caption: ElementInspectorAgent options
1313
"""
14-
from __future__ import absolute_import
15-
from __future__ import division
16-
from __future__ import print_function
17-
18-
__RCSID__ = "$Id$"
19-
2014
import datetime
2115
import concurrent.futures
2216

src/DIRAC/ResourceStatusSystem/Agent/EmailAgent.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,12 @@
99
:dedent: 2
1010
:caption: EmailAgent options
1111
"""
12-
from __future__ import absolute_import
13-
from __future__ import division
14-
from __future__ import print_function
15-
1612
from DIRAC import gConfig, S_OK, S_ERROR
1713
from DIRAC.Core.Base.AgentModule import AgentModule
1814
from DIRAC.ResourceStatusSystem.Client.ResourceStatusClient import ResourceStatusClient
1915
from DIRAC.ResourceStatusSystem.Utilities import RssConfiguration
2016
from DIRAC.Interfaces.API.DiracAdmin import DiracAdmin
2117

22-
__RCSID__ = "$Id$"
23-
2418
AGENT_NAME = "ResourceStatus/EmailAgent"
2519

2620

src/DIRAC/ResourceStatusSystem/Agent/RucioRSSAgent.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919

2020
from rucio.client import Client
2121

22-
__RCSID__ = "Id$"
23-
2422

2523
class RucioRSSAgent(AgentModule):
2624
"""

src/DIRAC/ResourceStatusSystem/Agent/SiteInspectorAgent.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,6 @@
1010
:dedent: 2
1111
:caption: SiteInspectorAgent options
1212
"""
13-
from __future__ import absolute_import
14-
from __future__ import division
15-
from __future__ import print_function
16-
17-
__RCSID__ = "$Id$"
18-
1913
import datetime
2014
import concurrent.futures
2115

src/DIRAC/ResourceStatusSystem/Agent/SummarizeLogsAgent.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,6 @@
1818
:dedent: 2
1919
:caption: SummarizeLogsAgent options
2020
"""
21-
from __future__ import absolute_import
22-
from __future__ import division
23-
from __future__ import print_function
24-
25-
__RCSID__ = "$Id$"
26-
2721
from datetime import datetime, timedelta
2822

2923
from DIRAC import S_OK

src/DIRAC/ResourceStatusSystem/Agent/TokenAgent.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,6 @@
1010
:dedent: 2
1111
:caption: TokenAgent options
1212
"""
13-
from __future__ import absolute_import
14-
from __future__ import division
15-
from __future__ import print_function
16-
17-
__RCSID__ = "$Id$"
18-
1913
from datetime import datetime, timedelta
2014

2115
from DIRAC import S_OK, S_ERROR
Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
11
""" DIRAC.ResourceStatusSystem.Agent package
22
33
"""
4-
from __future__ import absolute_import
5-
from __future__ import division
6-
from __future__ import print_function
7-
8-
__RCSID__ = "$Id$"

src/DIRAC/ResourceStatusSystem/Agent/test/Test_Agent_ElementInspectorAgent.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
""" Test class for ElementInspectorAgent
22
"""
3-
from __future__ import absolute_import
4-
from __future__ import division
5-
from __future__ import print_function
6-
73
# imports
84
from mock import MagicMock
95

src/DIRAC/ResourceStatusSystem/Agent/test/Test_Agent_ResourceStatusSystem.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
""" Test class for agents
22
"""
3-
from __future__ import absolute_import
4-
from __future__ import division
5-
from __future__ import print_function
6-
73
# pylint: disable=protected-access, missing-docstring, invalid-name, line-too-long
84

95
import pytest

0 commit comments

Comments
 (0)