Skip to content

Commit

Permalink
refactor: Rename jupyter_viz namespace to solara_viz
Browse files Browse the repository at this point in the history
  • Loading branch information
rht committed Jul 29, 2024
1 parent 92e744b commit 40dc223
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/apis/visualization.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ For a detailed tutorial, please refer to our [Visualization Tutorial](../tutoria
## Jupyter Visualization

```{eval-rst}
.. automodule:: mesa.visualization.jupyter_viz
.. automodule:: mesa.visualization.solara_viz
:members:
:undoc-members:
:show-inheritance:
Expand Down
2 changes: 1 addition & 1 deletion mesa/visualization/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .jupyter_viz import JupyterViz, Slider, SolaraViz, make_text
from .solara_viz import JupyterViz, Slider, SolaraViz, make_text

__all__ = ["JupyterViz", "make_text", "Slider", "SolaraViz"]
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_jupyter_viz.py → tests/test_solara_viz.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import solara

import mesa
from mesa.visualization.jupyter_viz import Slider, SolaraViz, UserInputs
from mesa.visualization.solara_viz import Slider, SolaraViz, UserInputs


class TestMakeUserInput(unittest.TestCase):
Expand Down

0 comments on commit 40dc223

Please sign in to comment.