Skip to content

Commit

Permalink
remove >>>
Browse files Browse the repository at this point in the history
  • Loading branch information
Mariosmsk committed Nov 28, 2023
1 parent 00904cd commit 0095d9f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ Minimum Example:

.. code-block:: console
>>> from epyt import epanet
>>> d = epanet('Net1.inp')
>>> d.getNodeCount()
>>> d.getNodeElevations()
from epyt import epanet
d = epanet('Net1.inp')
d.getNodeCount()
d.getNodeElevations()
Plot the network:

.. code-block:: console
>>> d.plot()
d.plot()
.. image:: net1_plot.png
:target: net1_plot.png
Expand All @@ -23,13 +23,13 @@ Lists all available functions and properties:

.. code-block:: console
>>> dir(d)
dir(d)
Retrieve some examples for the function:

.. code-block:: console
>>> help(d.getNodeElevations)
help(d.getNodeElevations)
Help on method getNodeElevations in module epyt.epanet:
getNodeElevations(*argv) method of epyt.epanet.epanet instance
Expand Down

0 comments on commit 0095d9f

Please sign in to comment.