mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
Fix type issue
This commit is contained in:
parent
c9ec03efe0
commit
eb72e299e9
1 changed files with 4 additions and 4 deletions
|
@ -76,7 +76,7 @@ class CellRow:
|
||||||
return row
|
return row
|
||||||
|
|
||||||
|
|
||||||
def backend_color_to_aqt_color(color: BrowserRow.Color.V) -> tuple[str, str] | None:
|
def backend_color_to_aqt_color(color: BrowserRow.Color.V) -> dict[str, str] | None:
|
||||||
temp_color = None
|
temp_color = None
|
||||||
|
|
||||||
if color == BrowserRow.COLOR_MARKED:
|
if color == BrowserRow.COLOR_MARKED:
|
||||||
|
@ -101,10 +101,10 @@ def backend_color_to_aqt_color(color: BrowserRow.Color.V) -> tuple[str, str] | N
|
||||||
return adjusted_bg_color(temp_color)
|
return adjusted_bg_color(temp_color)
|
||||||
|
|
||||||
|
|
||||||
def adjusted_bg_color(color: dict[str, str]) -> dict:
|
def adjusted_bg_color(color: dict[str, str]) -> dict[str, str]:
|
||||||
if color:
|
if color:
|
||||||
color.day = color.day.lighter(150).name()
|
color["day"] = color.day.lighter(150).name()
|
||||||
color.night = color.night.darker(150).name()
|
color["night"] = color.night.darker(150).name()
|
||||||
return color
|
return color
|
||||||
else:
|
else:
|
||||||
return None
|
return None
|
||||||
|
|
Loading…
Reference in a new issue