We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6592132 + cf606fc commit 13e4d2aCopy full SHA for 13e4d2a
.gitignore
@@ -0,0 +1,49 @@
1
+# Python temps
2
+__pycache__/
3
+*.py[cod]
4
+*$py.class
5
+build/
6
+dist/
7
+eggs/
8
+.eggs/
9
+*.egg-info/
10
+*.egg
11
+.tox/
12
+.pytest_cache
13
+
14
+# Editor Temps
15
+.*.sw?
16
+*~
17
+\#*\#
18
+.desktop
19
20
+# virtualenv
21
+venv/
22
+venv3/
23
24
+# pycharm
25
+.idea/
26
27
+# typshed repo
28
+typeshed/2and3/schema_salad
29
+typeshed/2and3/ruamel/yaml
30
31
32
+#mypy
33
+.mypy_cache/
34
+bin/
35
+lib/
36
37
+# Files generated by Makefile
38
+.cache/
39
+cache/
40
+.coverage
41
+coverage.xml
42
+htmlcov
43
+output
44
+output.txt
45
+pydocstyle_report.txt
46
+response.txt
47
+test.txt
48
+time.txt
49
+value
0 commit comments