Skip to content

Commit

Permalink
Update snap
Browse files Browse the repository at this point in the history
  • Loading branch information
epenet committed Jul 8, 2024
1 parent 60f18bd commit dc3773b
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ RET501.py:14:9: RET501 [*] Do not explicitly `return None` in function if it is
13 | print(f"{key} not found")
14 | return None
| ^^^^^^^^^^^ RET501
15 |
16 | @property
|
= help: Remove explicit `return None`

Expand All @@ -35,5 +37,6 @@ RET501.py:14:9: RET501 [*] Do not explicitly `return None` in function if it is
13 13 | print(f"{key} not found")
14 |- return None
14 |+ return


15 |
16 | @property
17 | def prop(self) -> None:

0 comments on commit dc3773b

Please sign in to comment.