Skip to content

Commit

Permalink
revert line change
Browse files Browse the repository at this point in the history
  • Loading branch information
ahuang11 committed Jul 20, 2024
1 parent aa7bc1f commit d3754a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hvplot/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -632,6 +632,8 @@ def __init__(

self.dynamic = dynamic
self.geo = any([geo, crs, global_extent, projection, project, coastline, features])
self.crs = self._process_crs(data, crs) if self.geo else None
self.output_projection = self.crs
self.project = project
self.coastline = coastline
self.features = features
Expand All @@ -640,8 +642,6 @@ def __init__(
self.sort_date = sort_date

# Import geoviews if geo-features requested
self.crs = self._process_crs(data, crs) if self.geo else None
self.output_projection = self.crs
if self.geo or self.datatype == 'geopandas':
try:
import geoviews # noqa
Expand Down

0 comments on commit d3754a9

Please sign in to comment.