Skip to content

Commit df6b0fe

Browse files
author
Kile
committed
Minor bugfix
1 parent e753376 commit df6b0fe

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

grafana/dashboards/main.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1464,7 +1464,8 @@
14641464
"fieldConfig": {
14651465
"defaults": {
14661466
"color": {
1467-
"mode": "continuous-purples"
1467+
"fixedColor": "semi-dark-purple",
1468+
"mode": "fixed"
14681469
},
14691470
"custom": {
14701471
"axisBorderShow": false,

killua/cogs/events.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ async def _process_vote_with_db(
708708
def _set_new_field_name_for_unsaved(
709709
self,
710710
field: "discord.embeds._EmbedFieldProxy",
711-
votes: Tuple[List[int], List[str]],
711+
votes: Dict[int, Tuple[List[int], List[str]]],
712712
pos: int,
713713
interaction: discord.Interaction,
714714
poll: bool,

killua/cogs/todo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ async def create(
298298
"""Lets you create your todo list in an interactive menu"""
299299

300300
user_todo_lists = [
301-
x async for x in await DB.todo.find({"owner": ctx.author.id})
301+
x async for x in DB.todo.find({"owner": ctx.author.id})
302302
]
303303

304304
if len(user_todo_lists) == 5:

0 commit comments

Comments
 (0)