We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I get a DeprecationWarning from filterpy/common/helpers.py:364
DeprecationWarning
filterpy/common/helpers.py:364
filterpy/common/helpers.py:364: DeprecationWarning: invalid escape sequence '\S'
It results from the invalid escape sequence in a docstring:
""" Computes the sum of the outer products of the rows in A and B P = \Sum {A[i] B[i].T} for i in 0..N ... """
I guess this is already fixed on master, since there it's using a raw docustring (r""")? But an easier fix would probably be to use "\Sum".
r"""
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I get a
DeprecationWarning
fromfilterpy/common/helpers.py:364
It results from the invalid escape sequence in a docstring:
I guess this is already fixed on master, since there it's using a raw docustring (
r"""
)? But an easier fix would probably be to use "\Sum".The text was updated successfully, but these errors were encountered: