Commit 8bfb2ec0 authored by shadMod's avatar shadMod 💬

quick docs

parent 910cd692
Pipeline #338 passed with stage
in 0 seconds
...@@ -147,7 +147,7 @@ class CompileVersion: ...@@ -147,7 +147,7 @@ class CompileVersion:
return [x for x in self.list_version if x[3] == 'LTS'] return [x for x in self.list_version if x[3] == 'LTS']
def compile_download(self) -> None: def compile_download(self) -> None:
# put constants in empty data # init data with all costants
with open(self.constants, "r") as fn: with open(self.constants, "r") as fn:
data = json.load(fn) data = json.load(fn)
...@@ -167,8 +167,7 @@ class CompileVersion: ...@@ -167,8 +167,7 @@ class CompileVersion:
if key not in self.INVERT_RELEASES if key not in self.INVERT_RELEASES
else ["lts", "latest"] else ["lts", "latest"]
) )
# put default arch: 'amd64'
# write all releases
releases = { releases = {
"amd64": self.populate_archs_releases(key, "amd64") "amd64": self.populate_archs_releases(key, "amd64")
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment