Skip to content
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

Solution #1376

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Solution #1376

wants to merge 2 commits into from

Conversation

RadeonT800
Copy link

No description provided.

Copy link

@mateacademy-ai-mentor mateacademy-ai-mentor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great job on implementing the caching decorator! 🎉 Your code meets all the task requirements effectively. While there are some suggestions for improvement, such as handling mutable arguments more robustly and ensuring the cache logic is clear, these don't detract from the functionality you've achieved. Keep up the good work and consider these enhancements for future projects! 😊

✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨



def cache(func: Callable) -> Callable:
# Write your code here
pass
calculated_data = []

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The calculated_data variable should be a list of tuples, which it is, but it should be initialized as an empty list. This is correct, but ensure that the logic of storing and retrieving cached data is handled properly.

def wrapper(*args, **kwargs) -> Any:
for value in args:
if isinstance(value, (list, set, dict)):
return None

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Returning None when encountering a list, set, or dict in args might not be the best approach. Consider raising an exception or handling this case differently to avoid unexpected behavior.

app/main.py Show resolved Hide resolved
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants