mirror of
https://github.com/RustPython/Parser.git
synced 2025-08-28 14:25:43 +00:00
Upgrade bitflags to remove clippy wanrings (#54)
* Upgrade bitflags to remove clippy wanrings * Fix python lint warnings
This commit is contained in:
parent
b48834fe2d
commit
531e41ae2c
2 changed files with 2 additions and 2 deletions
|
@ -716,7 +716,7 @@ class FoldImplVisitor(EmitVisitor):
|
||||||
name = rust_field(field.name)
|
name = rust_field(field.name)
|
||||||
self.emit(f"{name},", depth + 1)
|
self.emit(f"{name},", depth + 1)
|
||||||
self.emit("range,", depth + 1)
|
self.emit("range,", depth + 1)
|
||||||
self.emit(f"}})", depth)
|
self.emit("})", depth)
|
||||||
|
|
||||||
|
|
||||||
class FoldModuleVisitor(EmitVisitor):
|
class FoldModuleVisitor(EmitVisitor):
|
||||||
|
|
|
@ -10,7 +10,7 @@ license = "MIT"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rustpython-literal = { workspace = true }
|
rustpython-literal = { workspace = true }
|
||||||
|
|
||||||
bitflags = "2.2.1"
|
bitflags = "2.3.1"
|
||||||
itertools = "0.10.5"
|
itertools = "0.10.5"
|
||||||
num-bigint = { workspace = true }
|
num-bigint = { workspace = true }
|
||||||
num-traits = { workspace = true }
|
num-traits = { workspace = true }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue