fix(aurora): use elif instead of if

This commit is contained in:
Seaswimmer 2024-01-16 11:20:21 +00:00
parent d20cb4c3bc
commit 4795fac5ac
Signed by untrusted user: cswimr
GPG key ID: D74DDDDF420E13DF

View file

@ -19,7 +19,7 @@ class Overrides(ui.View):
current_setting = await config.user(self.ctx.author).auto_evidenceformat()
if current_setting is False:
await config.user(self.ctx.author).auto_evidenceformat.clear()
if current_setting is None:
elif current_setting is None:
await config.user(self.ctx.author).auto_evidenceformat.set(True)
else:
await config.user(self.ctx.author).auto_evidenceformat.set(False)
@ -34,7 +34,7 @@ class Overrides(ui.View):
current_setting = await config.user(self.ctx.author).history_ephemeral()
if current_setting is False:
await config.user(self.ctx.author).history_ephemeral.clear()
if current_setting is None:
elif current_setting is None:
await config.user(self.ctx.author).history_ephemeral.set(True)
else:
await config.user(self.ctx.author).history_ephemeral.set(False)
@ -49,7 +49,7 @@ class Overrides(ui.View):
current_setting = await config.user(self.ctx.author).history_inline()
if current_setting is False:
await config.user(self.ctx.author).history_inline.clear()
if current_setting is None:
elif current_setting is None:
await config.user(self.ctx.author).history_inline.set(True)
else:
await config.user(self.ctx.author).history_inline.set(False)