25 lines
219 B
Python
25 lines
219 B
Python
# flags: --minimum-version=3.10
|
|
class Plotter:
|
|
\
|
|
pass
|
|
|
|
class AnotherCase:
|
|
\
|
|
"""Some
|
|
\
|
|
Docstring
|
|
"""
|
|
|
|
# output
|
|
|
|
class Plotter:
|
|
|
|
pass
|
|
|
|
|
|
class AnotherCase:
|
|
"""Some
|
|
\
|
|
Docstring
|
|
"""
|