-
Notifications
You must be signed in to change notification settings - Fork 1
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
Update minor changes #389
Update minor changes #389
Conversation
Reviewer's Guide by SourceryThis pull request updates the Tips
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @mraniki - I've reviewed your changes and they look great!
Here's what I looked at during the review
- 🟡 General issues: 1 issue found
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment to tell me if it was helpful.
@@ -70,7 +70,7 @@ async def search(self, message: str) -> bool: | |||
if order_identifier in self.action_identifier: | |||
return True | |||
|
|||
return False | |||
#return False |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
issue: Commented-out code should be removed
Leaving commented-out code can clutter the codebase and make it harder to maintain. If this line is no longer needed, it should be removed entirely.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #389 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 6 6
Lines 143 142 -1
=========================================
- Hits 143 142 -1 ☔ View full report in Codecov by Sentry. |
Summary by Sourcery
Commented out a return statement in the search method of the handler.py file, potentially altering the method's behavior.