Skip to content

Commit a150373

Browse files
jacalataclaude
andcommitted
style: apply black 26.3.1 formatting
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent a809b50 commit a150373

15 files changed

Lines changed: 607 additions & 619 deletions

.gitignore

Lines changed: 161 additions & 159 deletions
Original file line numberDiff line numberDiff line change
@@ -1,159 +1,161 @@
1-
# Byte-compiled / optimized / DLL files
2-
__pycache__/
3-
*.py[cod]
4-
*$py.class
5-
test.junit.xml
6-
7-
# C extensions
8-
*.so
9-
10-
# Distribution / packaging
11-
.Python
12-
env/
13-
build/
14-
develop-eggs/
15-
dist/
16-
downloads/
17-
eggs/
18-
.eggs/
19-
lib/
20-
lib64/
21-
parts/
22-
sdist/
23-
var/
24-
*.egg-info/
25-
.installed.cfg
26-
*.egg
27-
pip-wheel-metadata/
28-
29-
# PyInstaller
30-
# Usually these files are written by a python script from a template
31-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32-
*.manifest
33-
*.spec
34-
35-
# Installer logs
36-
pip-log.txt
37-
pip-delete-this-directory.txt
38-
39-
# Unit test / coverage reports
40-
htmlcov/
41-
.tox/
42-
.coverage
43-
.coverage.*
44-
.cache
45-
nosetests.xml
46-
coverage.xml
47-
*,cover
48-
.hypothesis/
49-
50-
# Translations
51-
*.mo
52-
*.pot
53-
54-
# Django stuff:
55-
*.log
56-
local_settings.py
57-
58-
# Flask stuff:
59-
instance/
60-
.webassets-cache
61-
62-
# Scrapy stuff:
63-
.scrapy
64-
65-
# Sphinx documentation
66-
docs/_build/
67-
68-
# PyBuilder
69-
target/
70-
71-
# PyCharm stuff
72-
.idea/
73-
74-
# IPython Notebook
75-
.ipynb_checkpoints
76-
77-
# pyenv
78-
.python-version
79-
80-
# poetry
81-
poetry.lock
82-
83-
# celery beat schedule file
84-
celerybeat-schedule
85-
86-
# dotenv
87-
.env
88-
env.py
89-
90-
# virtualenv
91-
venv/
92-
ENV/
93-
.venv/
94-
95-
# Spyder project settings
96-
.spyderproject
97-
98-
# Rope project settings
99-
.ropeproject
100-
101-
# VSCode project settings
102-
.vscode/
103-
104-
# macOS.gitignore from https://github.com/github/gitignore
105-
*.DS_Store
106-
.AppleDouble
107-
.LSOverride
108-
109-
# Icon must end with two \r
110-
Icon
111-
112-
113-
# Thumbnails
114-
._*
115-
116-
# Files that might appear in the root of a volume
117-
.DocumentRevisions-V100
118-
.fseventsd
119-
.Spotlight-V100
120-
.TemporaryItems
121-
.Trashes
122-
.VolumeIcon.icns
123-
.com.apple.timemachine.donotpresent
124-
125-
# Directories potentially created on remote AFP share
126-
.AppleDB
127-
.AppleDesktop
128-
Network Trash Folder
129-
Temporary Items
130-
.apdisk
131-
132-
133-
134-
# Windows.gitignore from https://github.com/github/gitignore
135-
# Windows image file caches
136-
Thumbs.db
137-
ehthumbs.db
138-
139-
# Folder config file
140-
Desktop.ini
141-
142-
# Recycle Bin used on file shares
143-
$RECYCLE.BIN/
144-
145-
# Windows Installer files
146-
*.cab
147-
*.msi
148-
*.msm
149-
*.msp
150-
151-
# Windows shortcuts
152-
*.lnk
153-
154-
# Documentation
155-
docs/_site/
156-
docs/.jekyll-metadata
157-
docs/Gemfile.lock
158-
samples/credentials
159-
.venv/
1+
.claude/
2+
3+
# Byte-compiled / optimized / DLL files
4+
__pycache__/
5+
*.py[cod]
6+
*$py.class
7+
test.junit.xml
8+
9+
# C extensions
10+
*.so
11+
12+
# Distribution / packaging
13+
.Python
14+
env/
15+
build/
16+
develop-eggs/
17+
dist/
18+
downloads/
19+
eggs/
20+
.eggs/
21+
lib/
22+
lib64/
23+
parts/
24+
sdist/
25+
var/
26+
*.egg-info/
27+
.installed.cfg
28+
*.egg
29+
pip-wheel-metadata/
30+
31+
# PyInstaller
32+
# Usually these files are written by a python script from a template
33+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
34+
*.manifest
35+
*.spec
36+
37+
# Installer logs
38+
pip-log.txt
39+
pip-delete-this-directory.txt
40+
41+
# Unit test / coverage reports
42+
htmlcov/
43+
.tox/
44+
.coverage
45+
.coverage.*
46+
.cache
47+
nosetests.xml
48+
coverage.xml
49+
*,cover
50+
.hypothesis/
51+
52+
# Translations
53+
*.mo
54+
*.pot
55+
56+
# Django stuff:
57+
*.log
58+
local_settings.py
59+
60+
# Flask stuff:
61+
instance/
62+
.webassets-cache
63+
64+
# Scrapy stuff:
65+
.scrapy
66+
67+
# Sphinx documentation
68+
docs/_build/
69+
70+
# PyBuilder
71+
target/
72+
73+
# PyCharm stuff
74+
.idea/
75+
76+
# IPython Notebook
77+
.ipynb_checkpoints
78+
79+
# pyenv
80+
.python-version
81+
82+
# poetry
83+
poetry.lock
84+
85+
# celery beat schedule file
86+
celerybeat-schedule
87+
88+
# dotenv
89+
.env
90+
env.py
91+
92+
# virtualenv
93+
venv/
94+
ENV/
95+
.venv/
96+
97+
# Spyder project settings
98+
.spyderproject
99+
100+
# Rope project settings
101+
.ropeproject
102+
103+
# VSCode project settings
104+
.vscode/
105+
106+
# macOS.gitignore from https://github.com/github/gitignore
107+
*.DS_Store
108+
.AppleDouble
109+
.LSOverride
110+
111+
# Icon must end with two \r
112+
Icon
113+
114+
115+
# Thumbnails
116+
._*
117+
118+
# Files that might appear in the root of a volume
119+
.DocumentRevisions-V100
120+
.fseventsd
121+
.Spotlight-V100
122+
.TemporaryItems
123+
.Trashes
124+
.VolumeIcon.icns
125+
.com.apple.timemachine.donotpresent
126+
127+
# Directories potentially created on remote AFP share
128+
.AppleDB
129+
.AppleDesktop
130+
Network Trash Folder
131+
Temporary Items
132+
.apdisk
133+
134+
135+
136+
# Windows.gitignore from https://github.com/github/gitignore
137+
# Windows image file caches
138+
Thumbs.db
139+
ehthumbs.db
140+
141+
# Folder config file
142+
Desktop.ini
143+
144+
# Recycle Bin used on file shares
145+
$RECYCLE.BIN/
146+
147+
# Windows Installer files
148+
*.cab
149+
*.msi
150+
*.msm
151+
*.msp
152+
153+
# Windows shortcuts
154+
*.lnk
155+
156+
# Documentation
157+
docs/_site/
158+
docs/.jekyll-metadata
159+
docs/Gemfile.lock
160+
samples/credentials
161+
.venv/

0 commit comments

Comments
 (0)