Files
krowlog/src/ui/bigtext/highlight.py
Andreas Huber a640b35c87 rename ravenlog to krowlog
There is a database named RavenDB.
KrowLog starts with a K, which is a) distinctive and b) has an association to KDE.
2022-02-12 10:48:38 +01:00

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