n3world commented on a change in pull request #10794:
URL: https://github.com/apache/arrow/pull/10794#discussion_r699615244
##########
File path: python/pyarrow/tests/test_csv.py
##########
@@ -332,11 +332,13 @@ def read_bytes(self, b, **kwargs):
:param kwargs: arguments passed on to open the csv file
:return: b parsed as a single RecordBatch
"""
+ raise NotImplementedError
@property
@abc.abstractmethod
def use_threads(self):
- """Return true if this test is multi-threaded"""
+ """Whether this test is multi-threaded"""
+ raise NotImplementedError
Review comment:
I just realized there is an `abstractproperty` decorator which I should
have used here. Guess I'll fix that in my next change someday
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]