Closed
Description
The main
function defined in extract_scene.py
accepts a required argument. But the last line of extract_scene.py
calls main
without arguments.
- This probably means that nobody is calling
extract_scene.py
as a standalone script (which would trigger the wrongmain()
call. If this is the case, we should just delete the last two lines. - If we want to support using
extract_scene.py
as a standalone script, we should fix that call and determine what is the appropriateconfig
to be passed tomain
in that case.