From c6609d01318d9dadeb5cd803cc24f02e75af2b02 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Mon, 7 Dec 2020 14:27:04 +0100 Subject: [PATCH] add get_ftrack_event_mongo_info to lib's __init__ --- pype/modules/ftrack/lib/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pype/modules/ftrack/lib/__init__.py b/pype/modules/ftrack/lib/__init__.py index cad1a0343c..bb79faf0cb 100644 --- a/pype/modules/ftrack/lib/__init__.py +++ b/pype/modules/ftrack/lib/__init__.py @@ -4,7 +4,8 @@ from . settings import ( USER_HANDLERS_DIR, get_ftrack_url_from_settings, get_server_event_handler_paths, - get_user_event_handler_paths + get_user_event_handler_paths, + get_ftrack_event_mongo_info ) from . import avalon_sync from . import credentials @@ -20,6 +21,7 @@ __all__ = ( "get_ftrack_url_from_settings", "get_server_event_handler_paths", "get_user_event_handler_paths", + "get_ftrack_event_mongo_info", "avalon_sync",