Conversation
…ON file. Improved task details for better clarity and updated the task display function. Also adjusted unit tests to better align with the updated code.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces the User class, implemented in the task_manager/user.py file. A significant amount of effort was invested in developing and testing this class to ensure its functionality and reliability.
The following methods have been created: password_check, log_phone_usage, view_tasks, and create_task. Each method was rigorously tested in the test/test_user.py file to confirm proper operation.
Additionally, a virtual environment was set up to facilitate testing and ensure that all dependencies are properly managed.
The class includes the following variables: username, password, tasks_list, new_task, and phone_log_used. These components work together to enhance user management within the application.
This update reflects a commitment to improving the project's structure and functionality while ensuring thorough testing for a robust implementation.