1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Linting fix

This commit is contained in:
Ross McFarland
2018-11-15 09:03:36 -08:00
committed by GitHub
parent 7628f819b8
commit 7d8f04a746

View File

@@ -246,8 +246,7 @@ class Route53Provider(BaseProvider):
_msg = 'access_key_id={}, secret_access_key=***, ' \
'session_token=***'.format(access_key_id)
use_fallback_auth = access_key_id is None and \
secret_access_key is None and \
session_token is None
secret_access_key is None and session_token is None
if use_fallback_auth:
_msg = 'auth=fallback'
self.log = logging.getLogger('Route53Provider[{}]'.format(id))