Fix list literal spacing to use [ x, y ] style (#1044)

Enforce consistent space inside square brackets for all list literals
across source and test files.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Henry Ruhs
2026-02-18 09:18:03 +01:00
committed by GitHub
parent 8801668562
commit c7976ec9d4
11 changed files with 20 additions and 20 deletions
+2 -2
View File
@@ -20,8 +20,8 @@ def test_create_float_range() -> None:
def test_calc_int_step() -> None:
assert calculate_int_step([0, 1]) == 1
assert calculate_int_step([ 0, 1 ]) == 1
def test_calc_float_step() -> None:
assert calculate_float_step([0.1, 0.2]) == 0.1
assert calculate_float_step([ 0.1, 0.2 ]) == 0.1