add ci workflows #1
@@ -1,4 +1,4 @@
|
|||||||
from typing import List, Dict, Any
|
from typing import List
|
||||||
import plotly.colors as pc
|
import plotly.colors as pc
|
||||||
from ..models.schemas import Document
|
from ..models.schemas import Document
|
||||||
|
|
||||||
@@ -29,5 +29,5 @@ class ColorMapper:
|
|||||||
gray_value * 0.7 + rgb[1] * 0.3,
|
gray_value * 0.7 + rgb[1] * 0.3,
|
||||||
gray_value * 0.7 + rgb[2] * 0.3)
|
gray_value * 0.7 + rgb[2] * 0.3)
|
||||||
return f'rgb({int(gray_rgb[0])},{int(gray_rgb[1])},{int(gray_rgb[2])})'
|
return f'rgb({int(gray_rgb[0])},{int(gray_rgb[1])},{int(gray_rgb[2])})'
|
||||||
except:
|
except: # noqa: E722
|
||||||
return 'rgb(128,128,128)'
|
return 'rgb(128,128,128)'
|
Reference in New Issue
Block a user