Skip to content

Commit

Permalink
Linted code
Browse files Browse the repository at this point in the history
  • Loading branch information
andreped committed Sep 11, 2024
1 parent 886d49d commit b1fce42
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions vsi2tif/vsi2tif.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,11 @@
from argparse import ArgumentParser

try:
from .src.process import cellsens2tif_batch, cellsens2tif_single
from .src.process import cellsens2tif_batch
from .src.process import cellsens2tif_single
except ImportError:
from src.process import cellsens2tif_batch, cellsens2tif_single
try:
from .src.process import cellsens2tif_batch, cellsens2tif_single
except ImportError:
from src.process import cellsens2tif_batch, cellsens2tif_single
from src.process import cellsens2tif_batch
from src.process import cellsens2tif_single


def main():
Expand Down

0 comments on commit b1fce42

Please sign in to comment.