From 87c437e550fe320668673c4f441589dbdfe506b8 Mon Sep 17 00:00:00 2001 From: AlessandroZ Date: Mon, 24 Sep 2018 14:20:35 +0200 Subject: [PATCH] make flake8 happy (sorry) --- pupy/pupylib/utils/credentials.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pupy/pupylib/utils/credentials.py b/pupy/pupylib/utils/credentials.py index 85c599f5..6f00f1a6 100644 --- a/pupy/pupylib/utils/credentials.py +++ b/pupy/pupylib/utils/credentials.py @@ -113,9 +113,8 @@ class Credentials(object): return for creds in data: - creds = {k.lower(): v for k, v in creds.items()} + creds = {k.lower(): v for k, v in creds.items()} - found = False c = { 'category': creds['category'], 'cid': creds.get('cid', creds.get('uid')),