Skip to content

Commit 82eb2f3

Browse files
committed
refactor: remove port class attribute
1 parent 0ba2b3b commit 82eb2f3

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/balatrobot/client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ class BalatroClient:
2727
"""
2828

2929
host = "127.0.0.1"
30-
port = 12346
3130
timeout = 30.0
3231
buffer_size = 65536
3332

tests/balatrobot/test_client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ def test_client_initialization_defaults(self, port):
2828
def test_client_class_attributes(self):
2929
"""Test client class attributes are set correctly."""
3030
assert BalatroClient.host == "127.0.0.1"
31-
assert BalatroClient.port == 12346
3231
assert BalatroClient.timeout == 30.0
3332
assert BalatroClient.buffer_size == 65536
3433

0 commit comments

Comments
 (0)