mirror of
https://github.com/facefusion/facefusion.git
synced 2026-07-26 03:51:08 +02:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user