mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-05-31 06:50:58 +08:00
* add openbb-cookiecutter to repo * typo * review items * some fixes * missing annotation * duplicate ignore in pylintrc * protected access --------- Co-authored-by: Theodore Aptekarev <aptekarev@gmail.com> Co-authored-by: deeleeramone <>
11 lines
232 B
Python
11 lines
232 B
Python
"""OpenBB Cookiecutter Template."""
|
|
|
|
from pathlib import Path
|
|
|
|
__version__ = "0.4.0"
|
|
|
|
|
|
def get_template_path() -> Path:
|
|
"""Return the path to the cookiecutter template directory."""
|
|
return Path(__file__).parent / "template"
|