When I am trying to run the following code
import arcpy
from arcpy import env
env.workspace = r"C:\Users\Rvg296\PycharmProjects\Lab6"
tbx=r"C:\Users\Rvg296\PycharmProjects\Lab6\UTD.tbx"
arcpy.ImportToolbox(tbx)
arcpy.Model_UTD()
print("Suitable areas file created")
arcpy.RemoveToolbox(tbx)
for making a model run and create shapefile in the output folder. I am receiving an error like
C:\Python27\ArcGIS10.3\python.exe C:/Users/Rvg296/PycharmProjects/Lab6/Lab6HW.py Traceback (most recent call last): File "C:/Users/Rvg296/PycharmProjects/Lab6/Lab6HW.py", line 16, in arcpy.Model_UTD() AttributeError: 'module' object has no attribute 'Model_UTD'
Process finished with exit code 1