Skip to content

Commit e1c4bc1

Browse files
committed
sort imports
1 parent 6719fc4 commit e1c4bc1

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

dcpy/test/utils/geospatial/test_fgdb.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
import shutil
2-
from pytest import fixture
32
import zipfile
3+
4+
import pytest
5+
from pytest import fixture
6+
47
from dcpy.models.data.shapefile_metadata import Metadata
58
from dcpy.utils.geospatial import fgdb
6-
import pytest
79

810
GDB_ZIP = "geodatabase.gdb.zip"
911
FEATURE_CLASS = "mappluto_one_row"

dcpy/utils/geospatial/esri_metadata.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
from datetime import datetime
2+
23
from dcpy.models.data.shapefile_metadata import (
3-
Metadata,
44
Esri,
55
Mddatest,
6+
Metadata,
67
Scalerange,
78
)
89

dcpy/utils/geospatial/fgdb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
from pathlib import Path
21
import tempfile
32
import uuid
43
import zipfile
4+
from pathlib import Path
55

66
from osgeo import gdal
77

0 commit comments

Comments
 (0)