You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ABBREVIATE_BRIEF = "The $name class" \
"The $name widget" \
"The $name file" \
is \
provides \
specifies \
contains \
represents \
a \
an \
the
When loading and storing this again the following is written
ABBREVIATE_BRIEF = ""The $name class" " \
""The $name widget"" \
""The $name file"" \
is \
provides \
specifies \
contains \
represents \
a \
an \
the
Seems like the store_configuration method works as expected and adds quotes. The load_configuration on the other hand does not strip the quotes (as seen in the returned dictionary: 'ABBREVIATE_BRIEF': ['"The $name class" ', '"The $name widget"', '"The $name file"', 'is', 'provides', 'specifies', 'contains', 'represents', 'a', 'an', 'the']
The text was updated successfully, but these errors were encountered:
The default configuration has the following line
When loading and storing this again the following is written
Seems like the store_configuration method works as expected and adds quotes. The load_configuration on the other hand does not strip the quotes (as seen in the returned dictionary:
'ABBREVIATE_BRIEF': ['"The $name class" ', '"The $name widget"', '"The $name file"', 'is', 'provides', 'specifies', 'contains', 'represents', 'a', 'an', 'the']
The text was updated successfully, but these errors were encountered: