-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
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
Upgraded RSS example code #8123
Conversation
Thanks for opening this pull request! The maintainers of this repository would appreciate it if you would update our CHANGELOG.md based on your changes. |
e.g. list comprehension where necessary
0722495
to
5d6e7a3
Compare
Thanks for the PR! Reviewed and looks ok. Please move to ue4-dev branch as destination branch before we merge it. |
Thanks you very for reviewing. I duplicated the rebased PR in #8596 to keep it easier to review in this PR. |
Closing in favor of #8596 since |
Description
Changed color coding to be like it was intended: One dynamic color value was unused and overwritten with a static one, others shared a variable and was jointly modified.
More efficient and simpler code.
Changed
np.matrix
to np.array code.Note for reviewing:
np.matrix
is always two dimensional even with operations that create different shapes fornp.array
hence the swap fromnp.concatenate
tostack
.Where has this been tested?
Possible Drawbacks
This change is