Skip to content

Commit db66658

Browse files
committed
Run black format
1 parent ff1ab65 commit db66658

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

compiler/bitproto/linter.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ def lint(self, proto: Proto) -> int:
8080
"""
8181
warning_count: int = 0
8282
for definition_type in SUPPORTED_TYPES:
83-
8483
items: List[Tuple[str, Definition]]
8584
if definition_type is Proto: # proto is not a member of itself.
8685
items = [(proto.name, proto)]

compiler/bitproto/renderer/formatter.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@
6464

6565
@unique
6666
class CaseStyle(Enum_):
67-
6867
KEEP = 0
6968
SNAKE = 1
7069
UPPER = 2

compiler/bitproto/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,6 @@ def __delattr__(self, name):
206206
setattr(class_, "__delattr__", __delattr__)
207207

208208
if post_init:
209-
210209
init_func = getattr(class_, "__init__")
211210

212211
def decorate_init(func):

0 commit comments

Comments
 (0)