From aa9eda4b6d3bd64c18a86dbe553d27e2601dea52 Mon Sep 17 00:00:00 2001 From: kovagoadi Date: Mon, 31 Aug 2026 19:11:29 +0200 Subject: [PATCH] Fix import ordering in test_gamescript.py ruff's isort rules want the openttd import grouped with the other third-party imports, as the rest of the test suite has it. Co-Authored-By: Claude --- tests/test_gamescript.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_gamescript.py b/tests/test_gamescript.py index 22ad1e3..780144e 100644 --- a/tests/test_gamescript.py +++ b/tests/test_gamescript.py @@ -11,7 +11,6 @@ import re from pathlib import Path import pytest - from openttd.protocol import GS_BRIDGE_VERSION, GameEventType ROOT = Path(__file__).resolve().parents[1]