-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- update visualization module to Solara naming convention - update tutorial to ensure solara naming and `super().init()` - update tests to solara naming convention
- Loading branch information
Showing
4 changed files
with
37 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Import specific classes or functions from the modules | ||
from mesa_geo.visualization.geojupyter_viz import GeoJupyterViz | ||
from mesa_geo.visualization.leaflet_viz import LeafletViz | ||
from .geosolara_viz import GeoJupyterViz, GeoSolaraViz | ||
from .leaflet_viz import LeafletViz | ||
|
||
__all__ = ["GeoJupyterViz", "LeafletViz"] | ||
__all__ = ["GeoJupyterViz", "GeoSolaraViz", "LeafletViz"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters