aboutsummaryrefslogtreecommitdiffstats
path: root/chocula/util.py
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2021-11-24 16:10:30 -0800
committerBryan Newbold <bnewbold@archive.org>2021-11-24 16:10:30 -0800
commit2eec63919e758b6f037765c8ca46f53a42c5f138 (patch)
tree5418b43e219fac427d3bafca3fbe1098c0fbb85f /chocula/util.py
parent2d3a161c76f6f0acdad846f6070a3c282b8d9e38 (diff)
downloadchocula-2eec63919e758b6f037765c8ca46f53a42c5f138.tar.gz
chocula-2eec63919e758b6f037765c8ca46f53a42c5f138.zip
codespell fix minor typos (there are some more in actual code
Diffstat (limited to 'chocula/util.py')
-rw-r--r--chocula/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/chocula/util.py b/chocula/util.py
index 1d4a5d5..ed7398d 100644
--- a/chocula/util.py
+++ b/chocula/util.py
@@ -346,7 +346,7 @@ def clean_str(s: Optional[str]) -> Optional[str]:
# non-sorting
s.replace("\u02dc", "")
s.replace("\u0153", "")
- # there is a very samll chance this will filter out valid strings
+ # there is a very small chance this will filter out valid strings
if s.lower() in ("null", "n/a", "unknown"):
return None
return s or None