diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-04-15 21:47:11 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-04-19 20:29:17 +0200 |
commit | 6bb651ff40c76efeb27ca6203ce1c57da5c478b2 (patch) | |
tree | e9d66e655307dec56d1ec3a912a6ef6532c74ea0 | |
parent | 3fe4ef7b4c35b86161c61637d752017721166b47 (diff) | |
download | refcat-6bb651ff40c76efeb27ca6203ce1c57da5c478b2.tar.gz refcat-6bb651ff40c76efeb27ca6203ce1c57da5c478b2.zip |
use less surprising names
-rw-r--r-- | python/refcat/tasks.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py index 5eaca50..39565ff 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -1390,7 +1390,7 @@ class BiblioRefWiki(Refcat): # ==== Prepare unmatched -class BibliorefSortedIdent(Refcat): +class BiblioRefSortedIdent(Refcat): def requires(self): return BiblioRefV2() @@ -1409,7 +1409,7 @@ class BibliorefSortedIdent(Refcat): return luigi.LocalTarget(path=self.path(ext="json.zst"), format=Zstd) -class RefSortedIdent(Refcat): +class RefsSortedIdent(Refcat): def requires(self): return RefsWithUnstructured() |