https://forge.softwareheritage.org/source/swh-scheduler.git
Raw File
Tip revision: bab557e9f669caa69bca8cac239ba460542857db authored by Nicolas Dandrimont on 26 April 2021, 10:55:00 UTC
Remove row locking from SQL queries
Tip revision: bab557e
__init__.py
from pkgutil import extend_path
from typing import Iterable

__path__ = extend_path(__path__, __name__)  # type: Iterable[str]
back to top