Skip to content

Commit b486a2c

Browse files
committed
style: remove unused imports and arguments
1 parent 90c2963 commit b486a2c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/balatrobot/test_client.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import pytest
88

99
from balatrobot.client import BalatroClient
10-
from balatrobot.enums import State
1110
from balatrobot.exceptions import BalatroError, ConnectionFailedError
1211
from balatrobot.models import G
1312

@@ -104,7 +103,7 @@ def test_disconnect_when_not_connected(self, port):
104103
assert client._connected is False
105104
assert client._socket is None
106105

107-
def test_connection_failure_wrong_port(self, port):
106+
def test_connection_failure_wrong_port(self):
108107
"""Test connection failure with wrong port."""
109108
client = BalatroClient(port=54321) # Use invalid port directly
110109

0 commit comments

Comments
 (0)