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

Method show

archinstall/lib/menu/helpers.py:190–202  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

188 self._data_callback = data_callback
189
190 async def show(self) -> Result[ValueT]:
191 if self._data_callback:
192 result = await LoadingScreen[ValueT](
193 header=self._header,
194 data_callback=self._data_callback,
195 ).run()
196 return result
197 else:
198 _ = await LoadingScreen(
199 timer=self._timer,
200 header=self._header,
201 ).run()
202 return Result.true()
203
204
205class Table[ValueT]:

Callers

nothing calls this directly

Calls 3

LoadingScreenClass · 0.90
trueMethod · 0.80
runMethod · 0.45

Tested by

no test coverage detected