Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Arohan Ajit authored and Arohan Ajit committed Dec 5, 2024
1 parent 55b7895 commit e1eb5df
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions python/grass/pygrass/utils.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
import itertools
import fnmatch
import itertools
import os
from sqlite3 import OperationalError

import grass.lib.gis as libgis
from grass.script import core as grasscore
from grass.script import utils as grassutils

# flake8: noqa: E402
libgis.G_gisinit("")

import grass.lib.raster as libraster
from grass.lib.ctypes_preamble import String
from grass.script import core as grasscore
from grass.script import utils as grassutils
from grass.pygrass.errors import GrassError

# flake8: qa

from grass.pygrass.errors import GrassError


test_vector_name = "Utils_test_vector"
test_raster_name = "Utils_test_raster"
Expand Down Expand Up @@ -464,7 +463,7 @@ def create_test_vector_map(map_name="test_vector"):
"""

from grass.pygrass.vector import VectorTopo
from grass.pygrass.vector.geometry import Point, Line, Centroid, Boundary
from grass.pygrass.vector.geometry import Boundary, Centroid, Line, Point

cols = [
("cat", "INTEGER PRIMARY KEY"),
Expand Down Expand Up @@ -592,6 +591,7 @@ def create_test_stream_network_map(map_name="streams"):

if __name__ == "__main__":
import doctest

from grass.script.core import run_command

create_test_vector_map(test_vector_name)
Expand Down

0 comments on commit e1eb5df

Please sign in to comment.