diff options
Diffstat (limited to 'hydro_roll/config.py')
| -rw-r--r-- | hydro_roll/config.py | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/hydro_roll/config.py b/hydro_roll/config.py index e0789a0..a1b1d8a 100644 --- a/hydro_roll/config.py +++ b/hydro_roll/config.py @@ -83,15 +83,14 @@ class Directory(object): self.current_path = _path def get_dice_dir_list(self, _prefix: str) -> list: - return [ - os.path.join(self.current_path, f'{_prefix}', *dirs) + os.path.join(self.current_path, f"{_prefix}", *dirs) for dirs in [ - ['config'], - ['data'], - ['rules'], - ['scripts'], - ['web', 'frontend'], - ['web', 'backend'], + ["config"], + ["data"], + ["rules"], + ["scripts"], + ["web", "frontend"], + ["web", "backend"], ] ] |
