Skip to content

Commit

Permalink
don't bother with type hints yet
Browse files Browse the repository at this point in the history
  • Loading branch information
maximlt committed Dec 13, 2024
1 parent f8e1a30 commit 70e59b3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions hvplot/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
"""

import sys
import types
import typing

from collections.abc import Hashable

Expand Down Expand Up @@ -731,7 +729,7 @@ def import_datashader():
return datashader


def import_geoviews() -> typing.Union[types.ModuleType, None]:
def import_geoviews():
geoviews = None
try:
import geoviews
Expand Down

0 comments on commit 70e59b3

Please sign in to comment.