Lines Matching +full:zephyr +full:- +full:bugs +full:-
5 # SPDX-License-Identifier: Apache-2.0
17 # other zephyr/scripts modules
23 def parse_args() -> argparse.Namespace:
27 A helper script which loads all open bugs in the
28 zephyrproject-rtos/zephyr repository using the GitHub API, and writes
33 - GitHub API: https://docs.github.com/en/rest
34 - github.Issue.Issue:
36 - pickle: https://docs.python.org/3/library/pickle.html
44 def get_open_bugs() -> List[Issue]:
45 zephyr_repo = get_github_object().get_repo('zephyrproject-rtos/zephyr')
48 def open_out_file(args: argparse.Namespace) -> BinaryIO:
54 def main() -> None: