diff options
author | Frederick Muriuki Muriithi | 2022-05-18 16:38:52 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-05-18 16:42:49 +0300 |
commit | 8f32812ce73193366ee00d883fd427c830f5a8e9 (patch) | |
tree | c97767451c09889cbcecd2bfaf883d25aa3afb23 /quality_control/errors.py | |
parent | ed7348ae2acefbb7806e26d5c13dfbd47ba1c9c0 (diff) | |
download | gn-uploader-8f32812ce73193366ee00d883fd427c830f5a8e9.tar.gz |
Simplify slot names and fix namedtuple type name
- replace `line_number` with `line` and `column_number` with `column`
to save on slot name lengths.
- Fix the type name for the `DuplicateHeading` namedtuple type
Diffstat (limited to 'quality_control/errors.py')
-rw-r--r-- | quality_control/errors.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quality_control/errors.py b/quality_control/errors.py index 1eda646..4206b5b 100644 --- a/quality_control/errors.py +++ b/quality_control/errors.py @@ -26,7 +26,7 @@ class ParseError(Exception): super().__init__(*args) InvalidValue = namedtuple( - "InvalidValue", ("line_number", "column_number", "value", "message")) + "InvalidValue", ("line", "column", "value", "message")) DuplicateHeading = namedtuple( - "InvalidValue", ("line_number", "heading", "columns","message")) + "DuplicateHeading", ("line", "columns", "heading", "message")) |