We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 355dc12 + 563cb86 commit 8c78862Copy full SHA for 8c78862
dockerfiles/heat-container-agent/scripts/55-heat-config
@@ -18,7 +18,6 @@ import os
18
import shutil
19
import stat
20
import subprocess
21
-import six
22
import sys
23
24
import requests
@@ -94,7 +93,7 @@ def invoke_hook(c, log):
94
93
hot_inputs = c.get('inputs', [])
95
for hot_input in hot_inputs:
96
if hot_input.get('type', None) == 'String' and \
97
- not isinstance(hot_input['value'], six.string_types):
+ not isinstance(hot_input['value'], str):
98
hot_input['value'] = str(hot_input['value'])
99
iv = dict((i['name'], i['value']) for i in c['inputs'])
100
# The group property indicates whether it is softwarecomponent or
0 commit comments