File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ def parse_args():
2020 Parses arguments used for main()
2121
2222 :return: (object) Parsed argparse.ArgumentParser namespace
23- :since: TODO
23+ :since: 1.0.0
2424 """
2525
2626 parser = ArgumentParser (
@@ -46,7 +46,7 @@ def main():
4646 """
4747 gl-gl-build main()
4848
49- :since: TODO
49+ :since: 1.0.0
5050 """
5151
5252 args = parse_args ()
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ def _isElf(path: str | PathLike[str]) -> bool:
2626 :param path: Path to file
2727
2828 :return: (bool) If the file found at path is an ELF
29- :since: TODO
29+ :since: 1.0.0
3030 """
3131
3232 with open (path , "rb" ) as f :
@@ -44,7 +44,7 @@ def _getInterpreter(path: str | PathLike[str]) -> pathlib.Path:
4444 :param path: Path to file
4545
4646 :return: (str) Path of the interpreter
47- :since: TODO
47+ :since: 1.0.0
4848 """
4949
5050 with open (path , "rb" ) as f :
@@ -78,7 +78,7 @@ def _get_default_package_dir() -> pathlib.Path | None:
7878 Finds the default site-packages or dist-packages directory of the default python3 environment
7979
8080 :return: (str) Path to directory
81- :since: TODO
81+ :since: 1.0.0
8282 """
8383
8484 # Needs to escape the virtual environment python-gardenlinx-lib is running in
@@ -103,7 +103,7 @@ def export(
103103 :param output_dir: Path to output_dir
104104 :param package_dir: Path to package_dir
105105
106- :since: TODO
106+ :since: 1.0.0
107107 """
108108
109109 if not package_dir :
You can’t perform that action at this time.
0 commit comments