We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 066750a commit 4330620Copy full SHA for 4330620
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "monocleaner"
3
-version = "1.6.2"
+version = "1.6.3"
4
requires-python = ">=3.8"
5
authors = [
6
{ name = "Prompsit Language Engineering", email = "info@prompsit.com" },
src/monocleaner/hardrules.py
@@ -286,12 +286,12 @@ def main():
286
else:
287
logging.error(f" scol ({args.scol}) index above column number ({len(parts)}) on line {nline}")
288
sentence = ""
289
- tag = "c_missing_columns"
+ tag = "missing_columns"
290
#continue
291
292
293
if not args.dont_ignore_long and (len(line) > 1024):
294
- tag = "c_not_too_long"
+ tag = "not_too_long"
295
296
297
if tag == "":
0 commit comments