aboutsummaryrefslogtreecommitdiff
path: root/quality_control/errors.py
diff options
context:
space:
mode:
Diffstat (limited to 'quality_control/errors.py')
-rw-r--r--quality_control/errors.py4
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"))