Skip to content

Commit

Permalink
Correct return type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
kad-korpem committed Dec 2, 2024
1 parent 56f0ceb commit 04854cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geopackage_validator/validations/geometry_empty_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
);"""


def query_geometry_empty(dataset, sql_template) -> Iterable[Tuple[str, str, str, int]]:
def query_geometry_empty(dataset, sql_template) -> Iterable[Tuple[str, str, int, int]]:
columns = utils.dataset_geometry_tables(dataset)

for table_name, column_name, _ in columns:
Expand Down

0 comments on commit 04854cd

Please sign in to comment.