-
-
Notifications
You must be signed in to change notification settings - Fork 381
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add flake config globally * Remove un-used import
- Loading branch information
Showing
3 changed files
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[flake8] | ||
# E121: Continuation line under-indented for hanging indent | ||
# E123: Continuation line missing indentation or outdented | ||
# E125: Continuation line with same indent as next logical line | ||
# E128: Continuation line under-indented for visual indent | ||
# E226: Missing whitespace around arithmetic operator | ||
# W503: Line break occurred before a binary operator | ||
ignore=E121,E123,E125,E128,E226,W503 | ||
max-line-length=110 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,6 @@ | |
import io | ||
import os | ||
import random | ||
import subprocess | ||
import string | ||
|
||
import boto3 | ||
|