my.body.blood: use same file

overall I guess this module is highly specific to me anyway, so gonna be
hard to make it generic...
This commit is contained in:
Dima Gerasimov 2021-01-19 23:21:02 +00:00 committed by karlicoss
parent 5b501d1562
commit 3a1e21635a
2 changed files with 9 additions and 4 deletions

View file

@ -19,6 +19,8 @@ def parse_org_datetime(s: str) -> datetime:
raise RuntimeError(f"Bad datetime string {s}")
# TODO I guess want to borrow inspiration from bs4? element type <-> tag; and similar logic for find_one, find_all
from orgparse import OrgNode
from typing import Iterable, TypeVar, Callable
V = TypeVar('V')