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
Instead of yaml.load(obj) near getter.py:48 should use yaml.safe_load(obj) to suppress security warning. See https://msg.pyyaml.org/load for explanation.
The text was updated successfully, but these errors were encountered:
@DenesPal any idea if this changes have been implemented having this error recently .venv/lib/python3.7/site-packages/pyswagger/getter.py:48: in __next__ obj = yaml.load(obj) E TypeError: load() missing 1 required positional argument: 'Loader'
Instead of
yaml.load(obj)
neargetter.py:48
should useyaml.safe_load(obj)
to suppress security warning. See https://msg.pyyaml.org/load for explanation.The text was updated successfully, but these errors were encountered: