Skip to content
This repository has been archived by the owner on Sep 3, 2022. It is now read-only.

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
missed async_
Browse files Browse the repository at this point in the history
crwilcox committed Mar 10, 2020
1 parent ecbf81f commit 6d197d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google/datalab/utils/_async.py
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@
from future.utils import with_metaclass


class _async(with_metaclass(abc.ABCMeta, object)):
class async_(with_metaclass(abc.ABCMeta, object)):
""" Base class for async_function/async_method. Creates a wrapped function/method that will
run the original function/method on a thread pool worker thread and return a Job instance
for monitoring the status of the thread.

0 comments on commit 6d197d7

Please sign in to comment.