137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
output = output + output_range_low
output = int(output + 0.5)
return output
def _debug(self, message):
print("MILITE DEBUG: " + message)
return None
def _get_type_parameters(self, remote_type):
config = self._remote_type_parameters_map[remote_type]
# Supply default config values
if 'retries' not in config:
|
>
|
|
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
output = output + output_range_low
output = int(output + 0.5)
return output
def _debug(self, message):
if 'debug_log_command' in self._config:
self._config['debug_log_command'](message)
return None
def _get_type_parameters(self, remote_type):
config = self._remote_type_parameters_map[remote_type]
# Supply default config values
if 'retries' not in config:
|