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 Nov 15, 2024
1 parent d7f3684 commit 02307b3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/aiida/manage/configuration/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@

def get_config_path():
"""Returns path to .aiida configuration directory."""
from .settings import glb_aiida_config_folder, DEFAULT_CONFIG_FILE_NAME
from .settings import DEFAULT_CONFIG_FILE_NAME, glb_aiida_config_folder

return os.path.join(glb_aiida_config_folder, DEFAULT_CONFIG_FILE_NAME)

Expand Down
2 changes: 1 addition & 1 deletion src/aiida/manage/configuration/profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

from __future__ import annotations

from collections import abc
import os
import pathlib
from collections import abc
from copy import deepcopy
from typing import TYPE_CHECKING, Any, Dict, Literal, Mapping, Optional, Type

Expand Down
1 change: 1 addition & 0 deletions src/aiida/manage/profile_access.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
from aiida.common.lang import type_check
from aiida.manage.configuration import Profile


@typing.final
class ProfileAccessManager:
"""Class to manage access to a profile.
Expand Down

0 comments on commit 02307b3

Please sign in to comment.