-
Notifications
You must be signed in to change notification settings - Fork 4k
Closed
Description
Describe the enhancement requested
For example:
arrow/python/pyarrow/array.pxi
Lines 932 to 934 in a94f860
| raise TypeError("Do not call {}'s constructor directly, use one of " | |
| "the `pyarrow.Array.from_*` functions instead." | |
| .format(self.__class__.__name__)) |
should be:
raise TypeError(f"Do not call {self.__class__.__name__}'s constructor "
"directly, use one of the `pyarrow.Array.from_*` "
"functions instead.")Component(s)
Python