15 |
15 |
16 try: |
16 try: |
17 from ast import unparse |
17 from ast import unparse |
18 except ImportError: |
18 except ImportError: |
19 # Python < 3.9 |
19 # Python < 3.9 |
20 from .ast_unparse import unparse |
20 from ast_unparse import unparse |
21 |
21 |
22 ############################################################################### |
22 ############################################################################### |
23 ## The following code is derived from the flake8-simplify package (v0.20.0). |
23 ## The following code is derived from the flake8-simplify package (v0.20.0). |
24 ## |
24 ## |
25 ## Original License: |
25 ## Original License: |