openrewrite / rewrite-python

OpenRewrite recipes for Python.
Apache License 2.0
12 stars 5 forks source link

Parsing issue with multiple imports on different lines. #35

Closed traceyyoshima closed 1 year ago

traceyyoshima commented 1 year ago
    @Test
    void test() {
        rewriteRun(
          python(
            """
               import sys

               import math
             """)
        );
    }