From 8134bb4dcf90634e9f93fc722b62ade83160062f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Knut=20Olav=20L=C3=B8ite?= Date: Tue, 26 Nov 2024 15:24:21 +0100 Subject: [PATCH] chore: fix linting --- test/system/test_basics.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/system/test_basics.py b/test/system/test_basics.py index bf5724a2..e9e9d834 100644 --- a/test/system/test_basics.py +++ b/test/system/test_basics.py @@ -11,8 +11,8 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -from typing import Optional, List +from typing import Optional from sqlalchemy import ( text, Table, @@ -22,14 +22,12 @@ String, Index, MetaData, - Boolean, ARRAY, + Boolean, ) from sqlalchemy.orm import DeclarativeBase, Mapped, mapped_column, Session from sqlalchemy.testing import eq_ from sqlalchemy.testing.plugin.plugin_base import fixtures -from samples.conftest import connection - class TestBasics(fixtures.TablesTest): @classmethod