1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

"main thread" not "main call"

This commit is contained in:
Ross McFarland
2017-03-29 07:02:33 -07:00
parent 298fc2cdbf
commit 599605f0b2

View File

@@ -39,10 +39,10 @@ class _AggregateTarget(object):
class MainThreadExecutor(object): class MainThreadExecutor(object):
''' '''
Dummy executor that runs things on the main call during the involcation of Dummy executor that runs things on the main thread during the involcation
submit, but still returns a future object with the result. This allows code of submit, but still returns a future object with the result. This allows
to be written to handle async, even in the case where we don't want to use code to be written to handle async, even in the case where we don't want to
multiple threads/workers and would prefer that things flow as if use multiple threads/workers and would prefer that things flow as if
traditionally written. traditionally written.
''' '''