Skip to content

Commit e53430a

Browse files
committed
Velocity: correct typo in comparison
1 parent cea9f81 commit e53430a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bsag/steps/gradescope/limit_velocity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def run(cls, bsagio: BSAGIO, config: LimitVelocityConfig) -> bool:
130130
recharge_time = format_datetime(recharge_at, config.time_zone, config.time_format)
131131
bsagio.student.info(f"Your next recharge will occur at {recharge_time}.")
132132

133-
if tokens_avail >= 0:
133+
if tokens_avail < 0:
134134
res: Results = bsagio.data[RESULTS_KEY]
135135
res.score = 0
136136

0 commit comments

Comments
 (0)