Skip to content

Commit

Permalink
📝
Browse files Browse the repository at this point in the history
  • Loading branch information
mraniki committed Oct 10, 2023
1 parent 2e25cec commit d7761b8
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions findmyorder/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"""
from datetime import datetime

from loguru import logger
from pyparsing import (
Combine,
Optional,
Expand Down Expand Up @@ -43,12 +42,17 @@ class FindMyOrder:
def __init__(
self,
):
self.logger = logger
"""
Initializes the class instance.
async def search(
self,
my_string: str,
) -> bool:
Args:
self (ClassName): The class instance.
Returns:
None
"""

async def search(self, my_string: str) -> bool:
"""
Search an order.
Expand Down

0 comments on commit d7761b8

Please sign in to comment.