Skip to content

Commit

Permalink
change case as required.
Browse files Browse the repository at this point in the history
  • Loading branch information
scw committed Apr 26, 2013
1 parent 91bf1f0 commit 5d0d68f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions converttbx.pyt 100644 → 100755
Expand Up @@ -45,15 +45,15 @@ class CreatePYT(object):
param_1.displayName = u'Input Toolbox'
param_1.parameterType = 'Required'
param_1.direction = 'Input'
param_1.dataType = u'Toolbox'
param_1.datatype = u'Toolbox'

# Output_File
param_2 = arcpy.Parameter()
param_2.name = u'Output_File'
param_2.displayName = u'Output File'
param_2.parameterType = 'Required'
param_2.direction = 'Output'
param_2.dataType = u'File'
param_2.datatype = u'File'

return [param_1, param_2]
def isLicensed(self):
Expand Down

0 comments on commit 5d0d68f

Please sign in to comment.