mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
15 lines
205 B
Python
15 lines
205 B
Python
"""module with trailing underscores everywhere"""
|
|
|
|
|
|
class class_:
|
|
"""Class"""
|
|
|
|
def method_(_arg): # NoQA: N805
|
|
"""Method"""
|
|
pass
|
|
|
|
|
|
def function_(_arg):
|
|
"""Function"""
|
|
pass
|