Closed zakkg3 closed 1 year ago
Base: 95.36% // Head: 95.60% // Increases project coverage by +0.23%
:tada:
Coverage data is based on head (
32b9982
) compared to base (2c0e188
). Patch has no changes to coverable lines.
:mega: This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more
:umbrella: View full report at Codecov.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
Thanks for the fix!
Could you add one empty line after the code block? Sphinx has this weird thing that the first line after directive is reserved for parameters.
So like this:
.. code-block:: python
>>> from rocketry import Rocketry
>>> app = Rocketry()
>>> from rocketry.conds import time_of_day
>>> condition = time_of_day.between("10:00", "14:00")
>>> condition.observe(session=app.session)
True
Note the empty line.
Thanks for the fix!
Could you add one empty line after the code block? Sphinx has this weird thing that the first line after directive is reserved for parameters.
So like this:
.. code-block:: python >>> from rocketry import Rocketry >>> app = Rocketry() >>> from rocketry.conds import time_of_day >>> condition = time_of_day.between("10:00", "14:00") >>> condition.observe(session=app.session) True
Note the empty line.
Done :)
incomplete example. does not run as it is.