Skip to content

Commit 0782aa8

Browse files
Remove mypy cache files (#80)
1 parent 6f9cef9 commit 0782aa8

File tree

1,312 files changed

+180
-1314
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,312 files changed

+180
-1314
lines changed

.gitignore

Lines changed: 180 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,181 @@
1-
__pycache__
1+
.vs/
2+
.vscode/
3+
.idea/
4+
5+
# Byte-compiled / optimized / DLL files
6+
__pycache__/
7+
*.py[cod]
8+
*$py.class
9+
10+
# C extensions
11+
*.so
12+
13+
# Distribution / packaging
14+
.Python
15+
build/
16+
develop-eggs/
17+
dist/
18+
downloads/
19+
eggs/
20+
.eggs/
21+
lib/
22+
lib64/
23+
parts/
24+
sdist/
25+
var/
26+
wheels/
27+
pip-wheel-metadata/
28+
share/python-wheels/
29+
*.egg-info/
30+
.installed.cfg
31+
*.egg
32+
MANIFEST
33+
34+
# Google GitHub Actions credentials files created by:
35+
# https://github.com/google-github-actions/auth
36+
#
37+
# That action recommends adding this gitignore to prevent accidentally committing keys.
38+
gha-creds-*.json
39+
40+
# PyInstaller
41+
# Usually these files are written by a python script from a template
42+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
43+
*.manifest
44+
*.spec
45+
46+
# Installer logs
47+
pip-log.txt
48+
pip-delete-this-directory.txt
49+
50+
# Unit test / coverage reports
51+
htmlcov/
52+
.tox/
53+
.nox/
54+
.coverage
55+
.coverage.*
56+
.cache
57+
nosetests.xml
58+
coverage.xml
59+
*.cover
60+
*.py,cover
61+
.hypothesis/
62+
.pytest_cache/
63+
.mypy_cache_test/
64+
65+
# Translations
66+
*.mo
67+
*.pot
68+
69+
# Django stuff:
70+
*.log
71+
local_settings.py
72+
db.sqlite3
73+
db.sqlite3-journal
74+
75+
# Flask stuff:
76+
instance/
77+
.webassets-cache
78+
79+
# Scrapy stuff:
80+
.scrapy
81+
82+
# Sphinx documentation
83+
docs/_build/
84+
docs/docs/_build/
85+
86+
# PyBuilder
87+
target/
88+
89+
# Jupyter Notebook
90+
.ipynb_checkpoints
91+
notebooks/
92+
93+
# IPython
94+
profile_default/
95+
ipython_config.py
96+
97+
# pyenv
98+
.python-version
99+
100+
# pipenv
101+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
102+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
103+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
104+
# install all needed dependencies.
105+
#Pipfile.lock
106+
107+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
108+
__pypackages__/
109+
110+
# Celery stuff
111+
celerybeat-schedule
112+
celerybeat.pid
113+
114+
# SageMath parsed files
115+
*.sage.py
116+
117+
# Environments
118+
.env
119+
.envrc
120+
.venv*
121+
venv*
122+
env/
123+
ENV/
124+
env.bak/
125+
126+
# Spyder project settings
127+
.spyderproject
128+
.spyproject
129+
130+
# Rope project settings
131+
.ropeproject
132+
133+
# mkdocs documentation
134+
/site
135+
136+
# mypy
137+
.mypy_cache/
138+
.dmypy.json
139+
dmypy.json
140+
141+
# Pyre type checker
142+
.pyre/
143+
144+
# macOS display setting files
2145
.DS_Store
3-
.idea
4-
.mypy_cache
146+
147+
# Wandb directory
148+
wandb/
149+
150+
# asdf tool versions
151+
.tool-versions
152+
/.ruff_cache/
153+
.ruff_cache/
154+
155+
*.pkl
156+
*.bin
157+
158+
# integration test artifacts
159+
data_map*
160+
\[('_type', 'fake'), ('stop', None)]
161+
162+
# Replit files
163+
*replit*
164+
165+
node_modules
166+
docs/.yarn/
167+
docs/node_modules/
168+
docs/.docusaurus/
169+
docs/.cache-loader/
170+
docs/_dist
171+
docs/api_reference/*api_reference.rst
172+
docs/api_reference/_build
173+
docs/api_reference/*/
174+
!docs/api_reference/_static/
175+
!docs/api_reference/templates/
176+
!docs/api_reference/themes/
177+
docs/docs/build
178+
docs/docs/node_modules
179+
docs/docs/yarn.lock
180+
_dist
181+
docs/docs/templates

libs/ibm/.mypy_cache/3.11/@plugins_snapshot.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

libs/ibm/.mypy_cache/3.11/__future__.data.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

libs/ibm/.mypy_cache/3.11/__future__.meta.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

libs/ibm/.mypy_cache/3.11/_ast.data.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

libs/ibm/.mypy_cache/3.11/_ast.meta.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

libs/ibm/.mypy_cache/3.11/_bisect.data.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

libs/ibm/.mypy_cache/3.11/_bisect.meta.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

libs/ibm/.mypy_cache/3.11/_codecs.data.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

libs/ibm/.mypy_cache/3.11/_codecs.meta.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)