Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: Change the spelling of "end_colun" to "end_column".
  • Loading branch information
leafcoder committed Jan 4, 2022
commit 2d76999c2eb466a9a570da2a9187b4d3b6ed1092
2 changes: 1 addition & 1 deletion tablestore/encoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,7 @@ def _encode_get_range(self, table_name, direction,
if start_column is not None:
proto.start_column = start_column
if end_column is not None:
proto.end_colun = end_column
proto.end_column = end_column
if token is not None:
proto.token = token
if transaction_id is not None:
Expand Down