-
Consider suppressing B017 where `msg=` is passed to assertRaises, as it also validates the actual message in the raised exception matches `msg`.
Example:
`assertRaises(Exception, msg="Some excepti…
-
```python
def raise_error():
try:
1/0
finally:
raise ValueError
def wrap_error():
try:
raise_error()
except Exception as e:
raise Exceptio…
-
### How would this feature be useful?
When providing a Nox configuration for a team that may not be familiar with Nox, it would be good to give a simple command to list tags rather than have them loo…
-
### The Feature
we've had 1-2 issues regarding not calling `load_dotenv()`. We should ensure that we don't add code in the future that calls it. It would really help to have some linting / code quali…
-
There are some useful linters out there that can be incorporated into our pre-commit hooks.
Some linters to consider are:
- `pyupgrade` - will greatly help us with maintaining the Python upgrades …
-
We decided some time ago to drop Python 2.7 and only support 3.6 and later versions. Our legacy codebase offers many opportunities for cleaning up old syntax.
---
## Check List for Upgrading Mod…
-
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.
## Rate-Limited
These updates a…
-
```python
arr = ['a', 'b', 'c', 'd', 'e', 'f']
mydict = {}
for i in range(0, len(arr)):
def foo():
mydict[arr[i]] = 0
foo()
```
This example is obviously too simple to be real…
-
![image](https://user-images.githubusercontent.com/73915817/98054141-1dace400-1e32-11eb-954f-0e51a590bcd2.png)
I seem to be having problems with Flake8 and Linter. I have tried many things, the PA…
-
hi everyone,
before i evaluated ruff i wasn't even aware of flake8-pytest-styles,
as one of the pytest maintainers i'm particularly annoyed as the rules don't reflect documented and communicated b…