Skip to content

Commit

Permalink
fix: pylint - disable=unexpected-keyword-arg when calling a log downl…
Browse files Browse the repository at this point in the history
…oad plugin
  • Loading branch information
martynia committed Jul 11, 2023
1 parent 6163906 commit eb6b989
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,9 @@ def export_getRemotePilotOutput(self, pilotReference):
vo = getVOForGroup(proxyGroup)
self.log.info(f"Proxy used for retrieving pilot logs: VO: {vo}, User: {proxyUser}, Group: {proxyGroup}")

res = self.loggingPlugin.getRemotePilotLogs(pilotStamp, vo, proxyUserName=proxyUser, proxyUserGroup=proxyGroup)
res = self.loggingPlugin.getRemotePilotLogs(
pilotStamp, vo, proxyUserName=proxyUser, proxyUserGroup=proxyGroup
) # pylint: disable=unexpected-keyword-arg

if res["OK"]:
res["Value"]["OwnerDN"] = owner
Expand Down

0 comments on commit eb6b989

Please sign in to comment.