File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # local files
1+ # ##############################################
2+ # Project Specific
3+ # ##############################################
24* .blm
35* .cms
46* .dat
57
8+ # ##############################################
9+ # Python
10+ # ##############################################
611
712# Byte-compiled / optimized / DLL files
813__pycache__ /
@@ -93,6 +98,7 @@ celerybeat-schedule
9398.venv
9499venv /
95100ENV /
101+ Pipfile *
96102
97103# Spyder project settings
98104.spyderproject
@@ -107,7 +113,80 @@ ENV/
107113# mypy
108114.mypy_cache /
109115
110- .idea
111- .vscode
112116
113- poetry.lock
117+ # ##############################################
118+ # Operating Systems
119+ # ##############################################
120+ # Windows thumbnail cache files
121+ Thumbs.db
122+ Thumbs.db:encryptable
123+ ehthumbs.db
124+ ehthumbs_vista.db
125+
126+ # Dump file
127+ * .stackdump
128+
129+ # Folder config file
130+ [Dd ]esktop.ini
131+
132+ # Recycle Bin used on file shares
133+ $RECYCLE.BIN /
134+
135+ # Windows Installer files
136+ * .cab
137+ * .msi
138+ * .msix
139+ * .msm
140+ * .msp
141+
142+ # Windows shortcuts
143+ * .lnk
144+
145+ #
146+ # MacOS
147+ #
148+
149+ # General
150+ .DS_Store
151+ .AppleDouble
152+ .LSOverride
153+
154+ # Icon must end with two \r
155+ Icon
156+
157+
158+ # Thumbnails
159+ ._ *
160+
161+ # Files that might appear in the root of a volume
162+ .DocumentRevisions-V100
163+ .fseventsd
164+ .Spotlight-V100
165+ .TemporaryItems
166+ .Trashes
167+ .VolumeIcon.icns
168+ .com.apple.timemachine.donotpresent
169+
170+ # Directories potentially created on remote AFP share
171+ .AppleDB
172+ .AppleDesktop
173+ Network Trash Folder
174+ Temporary Items
175+ .apdisk
176+
177+ #
178+ # Linux
179+ #
180+ * ~
181+
182+ # temporary files which can be created if a process still has a handle open of a deleted file
183+ .fuse_hidden *
184+
185+ # KDE directory preferences
186+ .directory
187+
188+ # Linux trash folder which might appear on any partition or disk
189+ .Trash- *
190+
191+ # .nfs files are created when an open file is removed but is still being accessed
192+ .nfs *
Original file line number Diff line number Diff line change 55import string
66from array import array
77from pathlib import Path
8- from typing import List , Union
8+ from typing import Union
99
1010
1111def is_hex_string (hex_string : Union [str , None ]) -> bool :
You can’t perform that action at this time.
0 commit comments