There is a database named RavenDB. KrowLog starts with a K, which is a) distinctive and b) has an association to KDE.
13 lines
292 B
Python
13 lines
292 B
Python
from typing import Optional, List
|
|
|
|
from src.ui.bigtext.line import Line
|
|
from src.ui.bigtext.highlighted_range import HighlightedRange
|
|
|
|
|
|
class Highlight:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def compute_highlight(self, line: Line) -> Optional[List[HighlightedRange]]:
|
|
return None
|