Skip to content

Commit 8704dbd

Browse files
committed
fix: remove unused imports
1 parent 86877ad commit 8704dbd

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/connect4/core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from dataclasses import dataclass
44
from enum import Enum
5-
from typing import Any, Literal, Sequence, TypeAlias, cast
5+
from typing import Sequence, TypeAlias
66

77
from connect4.errors import ColumnFull, GameOver, InvalidColumn
88

tests/test_connect4.py

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
from pprint import pprint
2-
from sqlite3 import connect
3-
41
import connect4
52
import pytest
63

0 commit comments

Comments
 (0)