From f6c184ed547b8f0e46a5b234ec2651e643f6ea98 Mon Sep 17 00:00:00 2001 From: olliemath Date: Fri, 6 Aug 2021 17:33:12 +0100 Subject: [PATCH] Chore: isort --- clickhouse_orm/utils.py | 1 - 1 file changed, 1 deletion(-) diff --git a/clickhouse_orm/utils.py b/clickhouse_orm/utils.py index 92c7c99..ef79c27 100644 --- a/clickhouse_orm/utils.py +++ b/clickhouse_orm/utils.py @@ -8,7 +8,6 @@ from inspect import isclass from types import ModuleType from typing import Any, Dict, Iterable, List, Optional, Type, Union - Page = namedtuple("Page", "objects number_of_objects pages_total number page_size") Page.__doc__ += "\nA simple data structure for paginated results."