From b3a975fb54909f37c51c9c0448f7d5f47e3b3734 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Lan=C4=8D?= Date: Wed, 24 Apr 2024 09:01:59 +0200 Subject: [PATCH] Improve validation message --- tap_google_sheets/tap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tap_google_sheets/tap.py b/tap_google_sheets/tap.py index 8b357a7..a94ec20 100644 --- a/tap_google_sheets/tap.py +++ b/tap_google_sheets/tap.py @@ -169,7 +169,7 @@ def get_first_line_range(stream_config): start_column, start_line, end_column, end_line = result.groups("") break else: - raise ConfigValidationError("Invalid range format, please use valid A1 notation.") + raise ConfigValidationError("Invalid A1 notation for range.") if start_line and end_line: line_number = str(min(int(start_line), int(end_line))) else: