Since upgrading to 0.54 release VStudio Code has been underlining all of the widget method calls and giving the warning “No value for argument ‘body’ in method call pylint(no-value-for-parameter)”. This happens for all streamlit method calls except for st.write.
Any suggestions on how to resolve this?
For example:
this is fine:
st.write(‘some text’)
st is underlined with error as described above:
st.header(‘some header’)
st.sidebar.markdown(‘settings…’)