MCPcopy Index your code
hub / github.com/archlinux/archinstall / main

Function main

archinstall/main.py:192–207  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

190
191
192def main() -> int:
193 rc = 0
194 exc = None
195
196 try:
197 rc = run()
198 except Exception as e:
199 exc = e
200 finally:
201 if exc:
202 _error_message(exc)
203 rc = 1
204
205 translation_handler.restore_console_font()
206
207 return rc
208
209
210if __name__ == '__main__':

Callers 2

__main__.pyFile · 0.90
main.pyFile · 0.70

Calls 3

_error_messageFunction · 0.85
restore_console_fontMethod · 0.80
runFunction · 0.70

Tested by

no test coverage detected