Skip to content

Commit 68a694a

Browse files
committed
Refactor from scratch
- Add tests - Rewrite everything - Add travis
1 parent 4bb4d46 commit 68a694a

14 files changed

+1141
-348
lines changed

.flake8

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[flake8]
2+
max-line-length = 88
3+
ignore = W503
4+
exclude =
5+
.git,
6+
__pycache__,
7+
build,
8+
dist

.isort.cfg

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[settings]
2+
line_length = 60
3+
multi_line_output = 3
4+
use_parentheses = true
5+
include_trailing_comma = true
6+
quiet = true
7+
force_grid_wrap = 0
8+
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
9+
import_heading_future = Future
10+
import_heading_stdlib = Standard Library
11+
import_heading_thirdparty = Third Party
12+
import_heading_firstparty = First Party
13+
import_heading_localfolder = Local Folder

0 commit comments

Comments
 (0)