Skip to content

Commit

Permalink
Nit #11689
Browse files Browse the repository at this point in the history
  • Loading branch information
chrabyrd committed Dec 16, 2024
1 parent 414d207 commit 68d7b39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arches/settings_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def list_arches_app_names():

def list_arches_app_paths():
return [
config.module.__path__[0]
os.path.realpath(config.module.__path__[0])
for config in apps.get_app_configs()
if getattr(config, "is_arches_application", False)
]
Expand Down Expand Up @@ -149,7 +149,7 @@ def generate_frontend_configuration():
root_dir_path = os.path.realpath(settings.ROOT_DIR)

arches_app_names = list_arches_app_names()
arches_app_paths = [os.path.realpath(path) for path in list_arches_app_paths()]
arches_app_paths = list_arches_app_paths()
path_lookup = dict(zip(arches_app_names, arches_app_paths, strict=True))

frontend_configuration_settings_data = {
Expand Down

0 comments on commit 68d7b39

Please sign in to comment.