clean(resolve): hound suggestions

This commit is contained in:
Jakub Jezek 2020-05-29 13:14:38 +02:00
parent d0aa618f1a
commit e0166d0e39
No known key found for this signature in database
GPG key ID: C4B96E101D2A47F3
2 changed files with 7 additions and 1 deletions

View file

@ -28,6 +28,7 @@ from .lib import (
from .menu import launch_pype_menu
__all__ = [
# pipeline
"install",
"uninstall",
"ls",
@ -36,13 +37,17 @@ __all__ = [
"publish",
"launch_workfiles_app",
# utils
"setup",
"get_resolve_module",
"get_project_manager"
# lib
"get_project_manager",
# menu
"launch_pype_menu",
# workio
"open_file",
"save_file",
"current_file",

View file

@ -20,6 +20,7 @@ def main(env):
bmdvr.launch_pype_menu()
if __name__ == "__main__":
result = main(os.environ)
sys.exit(not bool(result))