Skip to content

Commit

Permalink
Moving stdlib import above contrib imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dericke committed Nov 29, 2020
1 parent 122952a commit da750f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fastkml/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
Import the geometries from shapely if it is installed or otherwise from Pygeoif
"""

import re

try:
from shapely.geometry import Point, LineString, Polygon
from shapely.geometry import MultiPoint, MultiLineString, MultiPolygon
Expand All @@ -40,8 +42,6 @@
from pygeoif.geometry import as_shape as asShape
from pygeoif.geometry import GeometryCollection


import re
import fastkml.config as config

from .config import etree
Expand Down

0 comments on commit da750f9

Please sign in to comment.