File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 66# Lint tools
77# (We are not so interested in the specific versions of the tools: the versions
88# are pinned to prevent unexpected linting failures when tools update)
9- ruff==0.8.6
9+ ruff==0.9.1
1010mypy==1.14.1
1111
1212# Required for type stubs
Original file line number Diff line number Diff line change @@ -1222,7 +1222,7 @@ def __init__(
12221222 self .number_of_bins = 2 ** bit_length
12231223 # suffix_len is calculated based on "number_of_bins - 1" as the name
12241224 # of the last bin contains the number "number_of_bins -1" as a suffix.
1225- self .suffix_len = len (f"{ self .number_of_bins - 1 :x} " )
1225+ self .suffix_len = len (f"{ self .number_of_bins - 1 :x} " )
12261226
12271227 def __eq__ (self , other : object ) -> bool :
12281228 if not isinstance (other , SuccinctRoles ):
Original file line number Diff line number Diff line change 88verification.
99"""
1010
11+ # We should not have shadowed stdlib json but that milk spilled already
12+ # ruff: noqa: A005
13+
1114import json
1215from typing import Optional
1316
You can’t perform that action at this time.
0 commit comments