Skip to content

Commit 78fc51d

Browse files
committed
Apply yapf code formatting fixes
1 parent 1ae7160 commit 78fc51d

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

sdks/python/apache_beam/typehints/typecheck_test.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -315,8 +315,7 @@ def test_visitor_applies_single_wrapper_layer(self):
315315
# A single RuntimeTypeCheckWrapperDoFn should wrap the user's DoFn
316316
# directly, with no intermediate wrapper layers.
317317
p = beam.Pipeline(options=PipelineOptions(runtime_type_check=True))
318-
_ = (
319-
p | beam.Create([1, 2]) | 'TypedStep' >> beam.ParDo(_AddOneDoFn()))
318+
_ = (p | beam.Create([1, 2]) | 'TypedStep' >> beam.ParDo(_AddOneDoFn()))
320319
p.visit(typecheck.TypeCheckVisitor())
321320

322321
wrapped_dofns = []
@@ -350,4 +349,4 @@ def test_wrapper_preserves_results(self):
350349

351350

352351
if __name__ == '__main__':
353-
unittest.main()
352+
unittest.main()

0 commit comments

Comments
 (0)