Spaces:
Runtime error
Runtime error
Upload 2 files
Browse files- .style.yapf +5 -0
- .travis.yml +8 -0
.style.yapf
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[style]
|
| 2 |
+
based_on_style = pep8
|
| 3 |
+
column_limit = 100
|
| 4 |
+
spaces_before_comment = 4
|
| 5 |
+
split_before_logical_operator = true
|
.travis.yml
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
language: python
|
| 2 |
+
|
| 3 |
+
matrix:
|
| 4 |
+
include:
|
| 5 |
+
- python: "3.7"
|
| 6 |
+
|
| 7 |
+
install:
|
| 8 |
+
- pip install -r requirements.txt
|