Skip to content

chore: Clean Up Unused time.sleep(2) Call in Product_tools.py #234

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/backend/kernel_tools/product_tools.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""ProductTools class for managing product-related tasks in a mobile plan context."""

import inspect
import time
# import time
from datetime import datetime
from typing import Annotated, Callable, List

Expand Down Expand Up @@ -30,7 +30,7 @@ async def add_mobile_extras_pack(new_extras_pack_name: str, start_date: str) ->
f"These changes have been completed and should be reflected in your app in 5-10 minutes."
f"\n\n{formatting_instructions}"
)
time.sleep(2)
# time.sleep(2)
return analysis

@staticmethod
Expand Down
Loading