Importing assets into Unreal 4.20 using python

For now, I’m able to call the function with this code:



import unreal
data = unreal.AutomatedAssetImportData()
data.set_editor_property('destination_path', '/Game/MyNewFolder')
data.set_editor_property('filenames', 'C:/Assets/SM_ColorCalibrator.FBX'])
data.set_editor_property('level_to_load', '/Game/MyNewLevel')
data.set_editor_property('replace_existing', True)
factory = unreal.FbxSceneImportFactory()
data.set_editor_property('factory', factory)
unreal.AssetToolsHelpers.get_asset_tools().import_assets_automated(data)

But I’m not able to prevent Unreal from showing the pop-up asking for the import settings.
It does not seem to have a way to avoid GetFbxSceneImportOptions() from UFbxSceneImportFactory