Rename my_configuration to mycfg for brevity

This commit is contained in:
Dima Gerasimov 2019-12-19 19:45:25 +00:00 committed by Dmitrii Gerasimov
parent cd804091c3
commit 066641a4ce
31 changed files with 65 additions and 70 deletions

View file

@ -5,7 +5,7 @@ See https://help.twitter.com/en/managing-your-account/how-to-download-your-twitt
Expects path to be set
- via ~configure~ (before calling anything else)
- or in ~my_configuration.twitter.export_path~
- or in ~mycfg.twitter.export_path~
"""
@ -30,8 +30,8 @@ def configure(*, export_path: Optional[PathIsh]=None) -> None:
def _get_export() -> Path:
export_path = _export_path
if export_path is None:
# fallback to my_configuration
from . import paths
# fallback to mycfg
from mycfg import paths
export_path = paths.twitter.export_path
p = Path(export_path)
if p.is_dir():