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
Describe the bug
YAML will fail to load with \t characters in the docstring. Technically developers should know not to use tabs when writing their yaml docstrings, but the IDE doesn't know the difference better the python lines and yaml lines when their in the same file.
To Reproduce
Steps to reproduce the behavior:
replace the spaces in a simple yaml doc string with tabs instead of multiple spaces
load the swagger-ui page
Expected behavior
Would expect no difference.
Desktop (please complete the following information):
OS: Win
Browser: chrome
Additional context
Should be as simple as a replace function to replace \t with multiple spaces before safe_load(...)
The text was updated successfully, but these errors were encountered:
Describe the bug
YAML will fail to load with
\t
characters in the docstring. Technically developers should know not to use tabs when writing their yaml docstrings, but the IDE doesn't know the difference better the python lines and yaml lines when their in the same file.To Reproduce
Steps to reproduce the behavior:
Expected behavior
Would expect no difference.
Desktop (please complete the following information):
Additional context
Should be as simple as a replace function to replace
\t
with multiple spaces beforesafe_load(...)
The text was updated successfully, but these errors were encountered: