Skip to content

Commit 5bdcebf

Browse files
authored
Merge pull request #62 from alexfikl/fix-ruff
Fix new error from ruff 0.10
2 parents 6131176 + b65cd54 commit 5bdcebf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jitcdde/_jitcdde.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -888,7 +888,7 @@ def _prepare_blind_int(self, target_time, step):
888888
if total_integration_time>0:
889889
if total_integration_time < step:
890890
step = total_integration_time
891-
number = int(round(total_integration_time/step))
891+
number = round(total_integration_time/step)
892892
dt = total_integration_time/number
893893
elif total_integration_time==0:
894894
number = 0

0 commit comments

Comments
 (0)