mirror of
https://github.com/1j01/textual-paint.git
synced 2024-12-23 23:05:06 +03:00
16 lines
303 B
Python
16 lines
303 B
Python
"""
|
|
This type stub file was generated by pyright.
|
|
"""
|
|
|
|
from typing import Text
|
|
|
|
"""Private miscellaneous utilities."""
|
|
class _CustomText(Text):
|
|
"""A custom string type for subclassing."""
|
|
def __repr__(self) -> Text:
|
|
"""Return a string representation of the object."""
|
|
...
|
|
|
|
|
|
|