
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
flake8-assert-finder
Advanced tools
A simple flake8 Plugin that checks if assert is used
The assert Keyword is very useful in Python, but has one big problem: Python has a optimized mode. When using this, The assert Keyword will no longer work, so if you use assert in a Library, this can lead to Problems.
You should replace assert with this little function:
def assert_func(expression: bool) -> None:
"""
The assert keyword is not available when running Python in optimized mode.
This function is a drop-in replacement.
See https://docs.python.org/3/using/cmdline.html?highlight=pythonoptimize#cmdoption-O
"""
if not expression:
raise AssertionError()
This makes sure, your will be working.
If you just write your own Program, which you don't use with the optimized mode or if you use something like pytest, you can use assert of course.
This Plugin just checks for the use of the assert Keyword. Nothing more.
| ID | Description |
|---|---|
| AF100 | Found assert |
FAQs
A simple flake8 Plugin that checks if assert is used
We found that flake8-assert-finder demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.