diff --git a/pyproject.toml b/pyproject.toml index cb10c2e..2e27414 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "monocleaner" -version = "1.6.2" +version = "1.6.3" requires-python = ">=3.8" authors = [ { name = "Prompsit Language Engineering", email = "info@prompsit.com" }, diff --git a/src/monocleaner/hardrules.py b/src/monocleaner/hardrules.py index 94cb0d2..f2fb110 100644 --- a/src/monocleaner/hardrules.py +++ b/src/monocleaner/hardrules.py @@ -286,12 +286,12 @@ def main(): else: logging.error(f" scol ({args.scol}) index above column number ({len(parts)}) on line {nline}") sentence = "" - tag = "c_missing_columns" + tag = "missing_columns" #continue if not args.dont_ignore_long and (len(line) > 1024): - tag = "c_not_too_long" + tag = "not_too_long" #continue if tag == "":