22 lines
568 B
Python
22 lines
568 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Fenrir TTY screen reader
|
|
# By Chrys, Storm Dragon, and contributors.
|
|
|
|
import importlib.util
|
|
import os
|
|
|
|
from fenrirscreenreader.core.i18n import _
|
|
|
|
_base_path = os.path.join(os.path.dirname(__file__), "bookmark_base.py")
|
|
_spec = importlib.util.spec_from_file_location("bookmark_base", _base_path)
|
|
_module = importlib.util.module_from_spec(_spec)
|
|
_spec.loader.exec_module(_module)
|
|
bookmark_command = _module.bookmark_command
|
|
|
|
|
|
class command(bookmark_command):
|
|
def __init__(self):
|
|
super().__init__(9, "read")
|