Skip to content

Commit

Permalink
Apply isort
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaraBuettner committed Sep 10, 2024
1 parent e7167db commit 6e2b9ce
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions etrago/analyze/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,27 @@
import logging
import os

from geoalchemy2.shape import to_shape # noqa: F401
from matplotlib import pyplot as plt
from matplotlib.legend_handler import HandlerPatch
from matplotlib.patches import Circle, Ellipse
from pyproj import Proj, transform
from pypsa.plot import draw_map_cartopy
from shapely.geometry import LineString, Point
import geopandas as gpd
import matplotlib
import matplotlib.patches as mpatches
import numpy as np
import pandas as pd
import tilemapbase

cartopy_present = True
try:
import cartopy.crs as ccrs
except ImportError:
cartopy_present = False

from geoalchemy2.shape import to_shape # noqa: F401
from pyproj import Proj, transform
from shapely.geometry import LineString, Point
import geopandas as gpd
import tilemapbase


logger = logging.getLogger(__name__)

Expand Down

0 comments on commit 6e2b9ce

Please sign in to comment.