QCDIS / NaaVRE

BSD 3-Clause "New" or "Revised" License
3 stars 2 forks source link

Import statements in try/except blocks cannot be containerized #1407

Open gpelouze opened 2 months ago

gpelouze commented 2 months ago
try:
    from osgeo import gdal
except:
    import gdal

gets rendered as

from osgeo import gdal
import gdal

[...]

try:
except: