Skip to content

Commit 7f06b1c

Browse files
committed
update .gitignore; remove unused import
1 parent b4172ea commit 7f06b1c

2 files changed

Lines changed: 84 additions & 5 deletions

File tree

.gitignore

Lines changed: 83 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
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
9499
venv/
95100
ENV/
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*

probables/utilities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import string
66
from array import array
77
from pathlib import Path
8-
from typing import List, Union
8+
from typing import Union
99

1010

1111
def is_hex_string(hex_string: Union[str, None]) -> bool:

0 commit comments

Comments
 (0)