Skip to content

Commit 12542a2

Browse files
committed
Reformat with black
1 parent 6b9354b commit 12542a2

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

marshalparser/marshalparser.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ def __init__(self, filename: Path):
5353
self.iterator = iterator
5454

5555
def parse(self) -> None:
56-
self.references: List[
57-
Reference
58-
] = [] # references to existing objects with FLAG_REF
56+
self.references: List[Reference] = (
57+
[]
58+
) # references to existing objects with FLAG_REF
5959
self.flag_refs: List[Flag_ref] = [] # objects with FLAG_REF on
6060
self.output = ""
6161
self.indent = 0

test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ def param(p, *, skip_reason=None):
2323
When skip_reson is set, the pytest.param will be marked as skipped."""
2424
if skip_reason is None:
2525
return pytest.param(p, id=str(p))
26-
return pytest.param(p,
27-
id=str(p),
28-
marks=[pytest.mark.skip(reason=skip_reason)])
26+
return pytest.param(
27+
p, id=str(p), marks=[pytest.mark.skip(reason=skip_reason)]
28+
)
2929

3030

3131
def generate_test_data():

0 commit comments

Comments
 (0)