Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f210d6c commit 93deeecCopy full SHA for 93deeec
2 files changed
.gitignore
@@ -35,5 +35,11 @@ htmlcov
35
# pytest cache
36
.pytest_cache/
37
38
+# virtualenv
39
+.Python
40
+bin/
41
+lib/
42
+include/
43
+
44
.tox
45
pip-wheel-metadata
setup.cfg
@@ -4,6 +4,9 @@ max-line-length = 99
4
exclude =
5
# from .gitignore: directories, and file patterns that intersect with *.py
6
build,
7
+ bin,
8
+ lib,
9
+ include,
10
@*,
11
env,
12
docs/build,
@@ -27,6 +30,7 @@ exclude =
27
30
tmp-test-dirs/*
28
31
29
32
.eggs
33
+ .Python
34
# Things to ignore:
# E251: spaces around default arg value (against our style)
0 commit comments