fix(updatechecker): final pylint fixes (for now)
This commit is contained in:
parent
45fcc00cdb
commit
88ee068cbd
1 changed files with 4 additions and 4 deletions
|
@ -365,7 +365,7 @@ class UpdateChecker(commands.Cog):
|
||||||
"""Add repos to the whitelist"""
|
"""Add repos to the whitelist"""
|
||||||
data = await self.conf.whitelist()
|
data = await self.conf.whitelist()
|
||||||
ds = set(data)
|
ds = set(data)
|
||||||
ns = set([r.name for r in repos])
|
ns = {r.name for r in repos}
|
||||||
ss = ds | ns
|
ss = ds | ns
|
||||||
await self.conf.whitelist.set(list(ss))
|
await self.conf.whitelist.set(list(ss))
|
||||||
await ctx.send(f"Whitelist update successful: {humanize_list(tuple(map(inline, ss)))}")
|
await ctx.send(f"Whitelist update successful: {humanize_list(tuple(map(inline, ss)))}")
|
||||||
|
@ -375,7 +375,7 @@ class UpdateChecker(commands.Cog):
|
||||||
"""Remove repos from the whitelist"""
|
"""Remove repos from the whitelist"""
|
||||||
data = await self.conf.whitelist()
|
data = await self.conf.whitelist()
|
||||||
ds = set(data)
|
ds = set(data)
|
||||||
ns = set([r.name for r in repos])
|
ns = {r.name for r in repos}
|
||||||
ss = ds - ns
|
ss = ds - ns
|
||||||
await self.conf.whitelist.set(list(ss))
|
await self.conf.whitelist.set(list(ss))
|
||||||
await ctx.send(
|
await ctx.send(
|
||||||
|
@ -397,7 +397,7 @@ class UpdateChecker(commands.Cog):
|
||||||
"""Add repos to the blacklist"""
|
"""Add repos to the blacklist"""
|
||||||
data = await self.conf.blacklist()
|
data = await self.conf.blacklist()
|
||||||
ds = set(data)
|
ds = set(data)
|
||||||
ns = set([r.name for r in repos])
|
ns = {r.name for r in repos}
|
||||||
ss = ds | ns
|
ss = ds | ns
|
||||||
await self.conf.blacklist.set(list(ss))
|
await self.conf.blacklist.set(list(ss))
|
||||||
await ctx.send(f"Backlist update successful: {humanize_list(tuple(map(inline, ss)))}")
|
await ctx.send(f"Backlist update successful: {humanize_list(tuple(map(inline, ss)))}")
|
||||||
|
@ -407,7 +407,7 @@ class UpdateChecker(commands.Cog):
|
||||||
"""Remove repos from the blacklist"""
|
"""Remove repos from the blacklist"""
|
||||||
data = await self.conf.blacklist()
|
data = await self.conf.blacklist()
|
||||||
ds = set(data)
|
ds = set(data)
|
||||||
ns = set([r.name for r in repos])
|
ns = {r.name for r in repos}
|
||||||
ss = ds - ns
|
ss = ds - ns
|
||||||
await self.conf.blacklist.set(list(ss))
|
await self.conf.blacklist.set(list(ss))
|
||||||
await ctx.send(
|
await ctx.send(
|
||||||
|
|
Loading…
Reference in a new issue