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

Refactor if expression #229

Merged
merged 1 commit into from
Oct 18, 2021
Merged
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
8 changes: 2 additions & 6 deletions minato_namikaze/bot_files/cogs/events/votes.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,16 +85,12 @@ async def hasvoted(self, ctx, member: Optional[Union[int, discord.Member]] = Non
)

try:
a_list = True if a.json().get("voted") >= 1 else False
a_list = a.json().get("voted") >= 1
except:
a_list = False

try:
c_list = (
True
if str(member.id) in c.json().get("hasVoted24", False)
else False
)
c_list = str(member.id) in c.json().get("hasVoted24", False)
except:
c_list = False

Expand Down