Skip to content

Commit

Permalink
Code style cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
cognitivegears committed Mar 27, 2021
1 parent db20c96 commit 4d5f5f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,12 @@ Usage Example
def greet():
print("Hello, world!")
""" Note: pass the function name, like greet, not greet():
""" Note: pass the function name, like greet, not greet():"""
schedule.every(10).seconds.do(greet)
while True:
schedule.run_pending()
time.sleep(1)
python3 -m venv .env
Expand Down
2 changes: 1 addition & 1 deletion docs/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Additional utilities that are available
Real Time Clock
----------------

This module works great in combination with a Real Time Clock (RTC), if one is
This module works great in combination with a Real Time Clock (RTC), if one is
available on your device. For example:

.. literalinclude:: ../examples/uschedule_rtc.py
Expand Down

0 comments on commit 4d5f5f5

Please sign in to comment.