Skip to content

Commit

Permalink
Update tests/functional/b/bad_dunder_name.py
Browse files Browse the repository at this point in the history
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
  • Loading branch information
clavedeluna and Pierre-Sassoulas authored Oct 18, 2022
1 parent ed43df2 commit 9f8ca4b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/functional/b/bad_dunder_name.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ def __hello__(self): # [bad-dunder-name]
def hello(self):
print("hello")

def _protected_method(self):
print("Protected")

def __private_method(self):
print("Private")
def __init__(self):
pass

Expand Down

0 comments on commit 9f8ca4b

Please sign in to comment.