@@ -104,7 +104,7 @@ def convert_dictionary_to_string(self, data, indent=0, format_type=0, separator=
104104 if separator is None :
105105 separator = ", "
106106
107- #This should not ever occur but here as a catch
107+ # This should not ever occur but here as a catch
108108 if type (data ) is not dict :
109109 raise TensorForceError (
110110 "Error: MetaParameterRecorder Dictionary conversion was passed a type {}"
@@ -140,7 +140,7 @@ def convert_list_to_string(self, data, indent=0, format_type=0, eol=None, count=
140140 if eol is None :
141141 eol = os .linesep
142142
143- #This should not ever occur but here as a catch
143+ # This should not ever occur but here as a catch
144144 if type (data ) is not list :
145145 raise TensorForceError (
146146 "Error: MetaParameterRecorder List conversion was passed a type {}"
@@ -171,7 +171,7 @@ def convert_ndarray_to_md(self, data, format_type=0, eol=None):
171171 if eol is None :
172172 eol = os .linesep
173173
174- #This should not ever occur but here as a catch
174+ # This should not ever occur but here as a catch
175175 if type (data ) is not np .ndarray :
176176 raise TensorForceError (
177177 "Error: MetaParameterRecorder ndarray conversion was passed"
@@ -254,7 +254,7 @@ def build_metagraph_list(self):
254254
255255 self .ignore_unknown_dtypes = True
256256 for key in sorted (self .meta_params ):
257- value = self .convert_data_to_string (self .meta_params [key ])
257+ value = self .convert_data_to_string (self .meta_params [key ])
258258
259259 if len (value ) == 0 :
260260 continue
0 commit comments