Skip to content

Commit 73152a5

Browse files
committed
fix flake8 findings
Signed-off-by: hwassman <[email protected]>
1 parent 98bf779 commit 73152a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/zimonGrafanaIntf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,8 @@ def main(argv):
226226
logger.info("%s", MSG['BridgeVersionInfo'].format(__version__))
227227
logger.details('zimonGrafanaItf invoked with parameters:\n %s',
228228
"\n".join("{}={}".format(k, v)
229-
for k, v in args.items() if not
230-
k in ['apiKeyValue', 'password']))
229+
for k, v in args.items() if
230+
k not in ['apiKeyValue', 'password']))
231231
mdHandler = MetadataHandler(logger=logger, server=args.get('server'),
232232
port=args.get('serverPort'),
233233
apiKeyName=args.get('apiKeyName'),

0 commit comments

Comments
 (0)