8 lines
168 B
Python
8 lines
168 B
Python
"""Type stubs for dotenv library."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
def load_dotenv(dotenv_path: str | Path | None = None) -> bool: ... |