Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Sep 27, 2022
1 parent 2021975 commit 7bdf2c1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions jupyter_core/paths.py
Expand Up @@ -166,7 +166,9 @@ def jupyter_runtime_dir():


if use_platform_dirs():
SYSTEM_JUPYTER_PATH = platformdirs.site_data_dir("Jupyter", appauthor=False, multipath=True).split(os.pathsep)
SYSTEM_JUPYTER_PATH = platformdirs.site_data_dir(
"Jupyter", appauthor=False, multipath=True
).split(os.pathsep)
else:
deprecation(
"Jupyter is migrating its paths to use standard platformdirs\n"
Expand Down Expand Up @@ -253,7 +255,9 @@ def jupyter_path(*subdirs):


if use_platform_dirs():
SYSTEM_CONFIG_PATH = platformdirs.site_config_dir("Jupyter", appauthor=False, multipath=True).split(os.pathsep)
SYSTEM_CONFIG_PATH = platformdirs.site_config_dir(
"Jupyter", appauthor=False, multipath=True
).split(os.pathsep)
else:
if os.name == "nt":
programdata = os.environ.get("PROGRAMDATA", None)
Expand Down

0 comments on commit 7bdf2c1

Please sign in to comment.