@@ -0,0 +1,10 @@
# coding: utf8
import json
from pathlib import Path
def read_template(browser: str) -> dict:
filepath = Path(__file__).parent / "templates" / f"{browser}.json"
if not filepath.exists():
return {}
return json.loads(filepath.read_text("utf8"))
The note is not visible to the blocked user.