(json: Optional[bool] = False,
sqlite_path: Optional[str] = None,
)
| 629 | @app.command() |
| 630 | @update_sqlite_path |
| 631 | def get_prefs(json: Optional[bool] = False, |
| 632 | sqlite_path: Optional[str] = None, |
| 633 | ): |
| 634 | |
| 635 | return ManagePreferences.fetch_prefs() |
| 636 | |
| 637 | def fetch_prefs(id: Optional[bool] = None, json: Optional[bool] = False): |
| 638 | """Get Preferences List.""" |
nothing calls this directly
no test coverage detected