Skip to content

Commit

Permalink
grass.jupyter: Fix unused-import (F401) by defining __all__ in __init__
Browse files Browse the repository at this point in the history
  • Loading branch information
echoix committed Oct 14, 2024
1 parent 5a7fa8f commit 587b282
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions python/grass/jupyter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,3 +112,14 @@
from .setup import init
from .timeseriesmap import TimeSeriesMap
from .seriesmap import SeriesMap

__all__ = [
"InteractiveMap",
"Map",
"Map3D",
"Raster",
"SeriesMap",
"TimeSeriesMap",
"Vector",
"init",
]

0 comments on commit 587b282

Please sign in to comment.