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

Sourcery refactored zeldrisdev branch #30

Merged
merged 1 commit into from Oct 14, 2021

Conversation

sourcery-ai[bot]
Copy link
Contributor

@sourcery-ai sourcery-ai bot commented Oct 14, 2021

Branch zeldrisdev refactored by Sourcery.

If you're happy with these changes, merge this Pull Request using the Squash and merge strategy.

See our documentation here.

Run Sourcery locally

Reduce the feedback loop during development by using the Sourcery editor plugin:

Review changes via command line

To manually merge these changes, make sure you're on the zeldrisdev branch, then run:

git fetch origin sourcery/zeldrisdev
git merge --ff-only FETCH_HEAD
git reset HEAD^

Help us improve this pull request!

Comment on lines +379 to +465
reply_markup=keyboard,
)
except BadRequest as excp:
if excp.message == "Unsupported url protocol":
try:
send_message(
update.effective_message,
"You seem to be trying to use an unsupported url protocol. "
"Telegram doesn't support buttons for some protocols, such as tg://. Please try "
"again...",
)
except BadRequest as excp:
LOGGER.exception("Error in filters: " + excp.message)
elif excp.message == "Reply message not found":
try:
context.bot.send_message(
chat.id,
filt.reply,
parse_mode=ParseMode.MARKDOWN_V2,
reply_markup=keyboard,
)
except BadRequest as excp:
LOGGER.exception("Error in filters: " + excp.message)
else:
try:
send_message(
update.effective_message,
"This message couldn't be sent as it's incorrectly formatted.",
)
except BadRequest as excp:
LOGGER.exception("Error in filters: " + excp.message)
LOGGER.warning(
"Message %s could not be parsed",
str(filt.reply),
try:
send_message(
update.effective_message,
filt.reply,
parse_mode=ParseMode.MARKDOWN_V2,
reply_markup=keyboard,
)
except BadRequest as excp:
if excp.message == "Unsupported url protocol":
try:
send_message(
update.effective_message,
"You seem to be trying to use an unsupported url protocol. "
"Telegram doesn't support buttons for some protocols, such as tg://. Please try "
"again...",
)
except BadRequest as excp:
LOGGER.exception("Error in filters: " + excp.message)
elif excp.message == "Reply message not found":
try:
context.bot.send_message(
chat.id,
filt.reply,
parse_mode=ParseMode.MARKDOWN_V2,
reply_markup=keyboard,
)
LOGGER.exception(
"Could not parse filter %s in chat %s",
str(filt.keyword),
str(chat.id),
except BadRequest as excp:
LOGGER.exception("Error in filters: " + excp.message)
else:
try:
send_message(
update.effective_message,
"This message couldn't be sent as it's incorrectly formatted.",
)
except BadRequest as excp:
LOGGER.exception("Error in filters: " + excp.message)
LOGGER.warning(
"Message %s could not be parsed",
str(filt.reply),
)
LOGGER.exception(
"Could not parse filter %s in chat %s",
str(filt.keyword),
str(chat.id),
)

else:
# LEGACY - all new filters will have has_markdown set to
# True.
try:
send_message(update.effective_message, filt.reply)
except BadRequest as excp:
LOGGER.exception("Error in filters: " + excp.message)
break
else:
# LEGACY - all new filters will have has_markdown set to
# True.
try:
send_message(update.effective_message, filt.reply)
except BadRequest as excp:
LOGGER.exception("Error in filters: " + excp.message)
break
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Function reply_filter refactored with the following changes:

@sourcery-ai
Copy link
Contributor Author

sourcery-ai bot commented Oct 14, 2021

Sourcery Code Quality Report

✅  Merging this PR will increase code quality in the affected files by 0.45%.

Quality metrics Before After Change
Complexity 47.31 ⛔ 42.23 ⛔ -5.08 👍
Method Length 127.46 😞 127.38 😞 -0.08 👍
Working memory 15.25 ⛔ 15.12 😞 -0.13 👍
Quality 36.25% 😞 36.70% 😞 0.45% 👍
Other metrics Before After Change
Lines 544 541 -3
Changed files Quality Before Quality After Quality Change
zeldris/modules/cust_filters.py 36.25% 😞 36.70% 😞 0.45% 👍

Here are some functions in these files that still need a tune-up:

File Function Complexity Length Working Memory Quality Recommendation
zeldris/modules/cust_filters.py reply_filter 110 ⛔ 566 ⛔ 25 ⛔ 2.26% ⛔ Refactor to reduce nesting. Try splitting into smaller methods. Extract out complex expressions
zeldris/modules/cust_filters.py filters 39 ⛔ 376 ⛔ 17 ⛔ 13.94% ⛔ Refactor to reduce nesting. Try splitting into smaller methods. Extract out complex expressions
zeldris/modules/cust_filters.py stop_filter 9 🙂 133 😞 11 😞 54.13% 🙂 Try splitting into smaller methods. Extract out complex expressions
zeldris/modules/cust_filters.py list_handlers 10 🙂 141 😞 10 😞 54.19% 🙂 Try splitting into smaller methods. Extract out complex expressions
zeldris/modules/cust_filters.py addnew_filter 1 ⭐ 45 ⭐ 10 😞 76.29% ⭐ Extract out complex expressions

Legend and Explanation

The emojis denote the absolute quality of the code:

  • ⭐ excellent
  • 🙂 good
  • 😞 poor
  • ⛔ very poor

The 👍 and 👎 indicate whether the quality has improved or gotten worse with this pull request.


Please see our documentation here for details on how these metrics are calculated.

We are actively working on this report - lots more documentation and extra metrics to come!

Help us improve this quality report!

@Ryomen-Sukuna Ryomen-Sukuna merged commit 3b8e529 into zeldrisdev Oct 14, 2021
@Ryomen-Sukuna Ryomen-Sukuna deleted the sourcery/zeldrisdev branch October 14, 2021 21:50
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.

None yet

1 participant