Browse code

Merge branch 'fixup/flake'

Joseph Weston authored on 21/11/2019 12:56:55
Showing 3 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,5 @@
1
+[flake8]
2
+max-line-length = 500
3
+ignore = E203,E266,E501,W503
4
+max-complexity = 18
5
+select = B,C,E,F,W,T4,B9
... ...
@@ -10,7 +10,7 @@ repos:
10 10
     -   id: end-of-file-fixer
11 11
     -   id: trailing-whitespace
12 12
 -   repo: https://gitlab.com/pycqa/flake8
13
-    rev: 3.7.4
13
+    rev: 3.7.8
14 14
     hooks:
15 15
     -   id: flake8
16 16
         args: ['--max-line-length=500', '--ignore=E203,E266,E501,W503', '--max-complexity=18', '--select=B,C,E,F,W,T4,B9']
... ...
@@ -65,7 +65,7 @@ def test_aync_def_function():
65 65
     asyncio.get_event_loop().run_until_complete(runner.task)
66 66
 
67 67
 
68
-### Test with different executors
68
+# --- Test with different executors
69 69
 
70 70
 
71 71
 @pytest.fixture(scope="session")