Skip to content

Commit

Permalink
Improve validation message
Browse files Browse the repository at this point in the history
  • Loading branch information
lancondrej committed Apr 24, 2024
1 parent da66ad0 commit b3a975f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tap_google_sheets/tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit b3a975f

Please sign in to comment.