aboutsummaryrefslogtreecommitdiffstats
path: root/fuzzycat/cleanups.py
diff options
context:
space:
mode:
Diffstat (limited to 'fuzzycat/cleanups.py')
-rw-r--r--fuzzycat/cleanups.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/fuzzycat/cleanups.py b/fuzzycat/cleanups.py
deleted file mode 100644
index c2e021d..0000000
--- a/fuzzycat/cleanups.py
+++ /dev/null
@@ -1,13 +0,0 @@
-"""
-Various shared cleanup approaches.
-"""
-
-from fuzzycat.utils import (StringPipeline, normalize_ampersand, normalize_whitespace)
-
-# These transformations should not affect the name or a journal.
-basic = StringPipeline([
- str.lower,
- normalize_whitespace,
- normalize_ampersand,
- lambda v: v.rstrip("."),
-])