mirror of
https://github.com/denizsafak/abogen.git
synced 2026-07-18 21:50:28 +02:00
- Add .gitattributes with text=auto eol=lf for all text files - Renormalize all files in index to LF line endings - Fixes massive whitespace-only diffs between main and feature branch
11 lines
280 B
Python
11 lines
280 B
Python
"""Invalid plugin: missing PLUGIN_MANIFEST."""
|
|
|
|
from __future__ import annotations
|
|
|
|
# This plugin intentionally does NOT export PLUGIN_MANIFEST
|
|
MODEL_REQUIREMENTS: list = []
|
|
|
|
|
|
def create_engine(context, model_path, config):
|
|
raise NotImplementedError("This plugin is invalid")
|