Skip to content

Commit

Permalink
Add missing python code styling
Browse files Browse the repository at this point in the history
  • Loading branch information
dosisod committed Aug 5, 2023
1 parent 42b743e commit 0eb80ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ This flag can be repeated.
You can also use inline comments to disable errors:

```
```python
x = int(0) # noqa: FURB123
y = list() # noqa
```
Expand All @@ -91,7 +91,7 @@ all errors on that line.

You can also specify multiple errors to ignore by separating them with a comma/space:

```
```python
x = not not int(0) # noqa: FURB114, FURB123
x = not not int(0) # noqa: FURB114 FURB123
```
Expand Down

0 comments on commit 0eb80ac

Please sign in to comment.