Files
ruff/resources/test/fixtures/flake8_quotes/docstring_singles_class.py
2022-10-28 17:52:11 -04:00

10 lines
290 B
Python

class SingleLineDocstrings():
''' Double quotes single line class docstring '''
''' Not a docstring '''
def foo(self, bar='''not a docstring'''):
''' Double quotes single line method docstring'''
pass
class Nested(foo()[:]): ''' inline docstring '''; pass