(location, **kwargs)
| 36 | |
| 37 | |
| 38 | def run_scan(location, **kwargs): |
| 39 | from scancode import cli |
| 40 | |
| 41 | pretty = kwargs.pop("pretty", True) |
| 42 | return as_json(cli.run_scan(location, **kwargs), pretty=pretty) |
| 43 | |
| 44 | |
| 45 | if __name__ == "__channelexec__": |
no test coverage detected