mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-02-22 13:15:44 -05:00
distro/repo_config: reformat with yapf 0.33
This commit is contained in:
parent
dbc512ee3f
commit
68154467f3
1 changed files with 8 additions and 4 deletions
|
@ -110,14 +110,18 @@ REPOS_CONFIG_DEFAULT = ReposConfigFile({
|
||||||
'kupfer_local': REPO_DEFAULTS | {
|
'kupfer_local': REPO_DEFAULTS | {
|
||||||
LOCALONLY_KEY: True
|
LOCALONLY_KEY: True
|
||||||
},
|
},
|
||||||
**{r: deepcopy(REPO_DEFAULTS) for r in REPOSITORIES},
|
**{
|
||||||
|
r: deepcopy(REPO_DEFAULTS) for r in REPOSITORIES
|
||||||
|
},
|
||||||
},
|
},
|
||||||
BASEDISTROS_KEY: {
|
BASEDISTROS_KEY: {
|
||||||
arch: {
|
arch: {
|
||||||
REMOTEURL_KEY: None,
|
REMOTEURL_KEY: None,
|
||||||
'repos': {k: {
|
'repos': {
|
||||||
'remote_url': v
|
k: {
|
||||||
} for k, v in arch_def['repos'].items()},
|
'remote_url': v
|
||||||
|
} for k, v in arch_def['repos'].items()
|
||||||
|
},
|
||||||
} for arch, arch_def in BASE_DISTROS.items()
|
} for arch, arch_def in BASE_DISTROS.items()
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Reference in a new issue