Fixing Pylint

This commit is contained in:
Vishal 2024-08-31 19:38:19 +05:30 committed by GitHub
parent bef294e5ed
commit cf0696a2ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -617,7 +617,9 @@ class MainMenuActivity(bs.Activity[bs.Player, bs.Team]):
# Gen some random keys for that stop-motion-y look
for _i in range(10):
keys[time_v] = x + (random.random() - 0.5) * 0.7 * jitter_scale
keys[time_v] = (
x + (random.random() - 0.5) * 0.7 * jitter_scale
)
time_v += random.random() * 0.1
bs.animate(cmb, 'input0', keys, loop=True)
keys = {}