Skip to content

Commit

Permalink
fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
fstagni committed Mar 17, 2021
1 parent 7ca9288 commit a9c43d3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/DIRAC/FrameworkSystem/Client/NotificationClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def __init__(self, **kwargs):
self.setServer('Framework/Notification')

def sendMail(self, addresses, subject, body,
fromAddress=None, localAttempt=True, html=False):
fromAddress=None, localAttempt=True, html=False):
""" Send an e-mail with subject and body to the specified address. Try to send
from local area before central service by default.
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ def export_getJobParameters(cls, jobIDs, parName=None):
return cls.jobDB.getJobParameters(jobIDs, parName)

##############################################################################
types_getAtticJobParameters = [[int, long]]
types_getAtticJobParameters = [list(six.integer_types)]

@classmethod
def export_getAtticJobParameters(cls, jobID, parameters=None, rescheduleCycle=-1):
Expand Down

0 comments on commit a9c43d3

Please sign in to comment.