(dirname)
| 120 | def wrap_gradio_gpu_call(f): return f # Displaying various stats is not supported |
| 121 | |
| 122 | def listfiles(dirname): |
| 123 | import os |
| 124 | filenames = [os.path.join(dirname, x) for x in sorted(os.listdir(dirname)) if not x.startswith(".")] |
| 125 | return [file for file in filenames if os.path.isfile(file)] |
| 126 | |
| 127 | def get_opt(name, default): return default # Configuring is not supported |
| 128 |
nothing calls this directly
no outgoing calls
no test coverage detected