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.
1 parent 9f9930e commit bcef56cCopy full SHA for bcef56c
src/attributecode/model.py
@@ -936,6 +936,9 @@ def load(self, location):
936
# Therefore, we need to wrap the original value in quote to prevent
937
# the conversion
938
pre_input = wrap_boolean_value(input_text)
939
+ # saneyaml.load() will have parsing error if the input has
940
+ # tab value. Therefore, we should check if the input contains
941
+ # any tab and then convert it to spaces.
942
input = replace_tab_with_spaces(pre_input)
943
# FIXME: this should be done in the commands, not here
944
"""
0 commit comments