Upgrade bitflags to remove clippy wanrings (#54)

* Upgrade bitflags to remove clippy wanrings

* Fix python lint warnings
This commit is contained in:
Jeong, YunWon 2023-05-18 01:50:00 +09:00 committed by GitHub
parent b48834fe2d
commit 531e41ae2c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -716,7 +716,7 @@ class FoldImplVisitor(EmitVisitor):
name = rust_field(field.name)
self.emit(f"{name},", depth + 1)
self.emit("range,", depth + 1)
self.emit(f"}})", depth)
self.emit("})", depth)
class FoldModuleVisitor(EmitVisitor):