From 7deaa85fb8f9898788044624e4f25d2eacf0df15 Mon Sep 17 00:00:00 2001 From: Mani Mozaffar Date: Thu, 23 May 2024 22:34:31 +0200 Subject: [PATCH] Fix small issue in documentation's example --- aioclock/app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aioclock/app.py b/aioclock/app.py index 1f89eab..7c96943 100644 --- a/aioclock/app.py +++ b/aioclock/app.py @@ -32,8 +32,8 @@ class AioClock: AioClock is the main class that will be used to run the tasks. It will be responsible for running the tasks in the right order. - Example: + Example: ```python from aioclock import AioClock, Once app = AioClock() @@ -45,6 +45,7 @@ async def main(): To run the aioclock final app simply do: + Example: ```python from aioclock import AioClock, Once app = AioClock()