fix(seautils): prevent duplicates in dig
This commit is contained in:
parent
8608e6a34e
commit
cb6ddabb4d
1 changed files with 8 additions and 3 deletions
|
@ -135,13 +135,18 @@ class SeaUtils(commands.Cog):
|
|||
response = m['message']['response_message_data']
|
||||
if 'QUESTION_SECTION' in response:
|
||||
for question in response['QUESTION_SECTION']:
|
||||
questions.append(question)
|
||||
if question not in questions:
|
||||
questions.append(question)
|
||||
|
||||
if 'ANSWER_SECTION' in response:
|
||||
for answer in response['ANSWER_SECTION']:
|
||||
answers.append(answer)
|
||||
if answer not in answers:
|
||||
answers.append(answer)
|
||||
|
||||
if 'AUTHORITY_SECTION' in response:
|
||||
for authority in response['AUTHORITY_SECTION']:
|
||||
authorities.append(authority)
|
||||
if authority not in authorities:
|
||||
authorities.append(authority)
|
||||
|
||||
question_section = "\n".join(questions)
|
||||
embed.add_field(name="Question Section", value=f"{cf.box(question_section)}", inline=False)
|
||||
|
|
Loading…
Reference in a new issue