STY: Flake8

This commit is contained in:
jfkirk
2016-04-14 16:31:05 -04:00
committed by Jean Bredeche
parent 4b7390ac81
commit 241abda2a5
11 changed files with 174 additions and 172 deletions
+3 -3
View File
@@ -55,6 +55,6 @@ def main(env, do_upload):
if __name__ == '__main__':
env = os.environ.copy()
main(env,
do_upload=(env.get('ANACONDA_TOKEN') and
env.get('APPVEYOR_REPO_BRANCH') == 'master') and
'APPVEYOR_PULL_REQUEST_NUMBER' not in env)
do_upload=((env.get('ANACONDA_TOKEN')
and env.get('APPVEYOR_REPO_BRANCH') == 'master')
and 'APPVEYOR_PULL_REQUEST_NUMBER' not in env))