Mercurial > public > mercurial-scm > hg-stable
diff mercurial/worker.py @ 46405:f64806207752 stable
typing: disable a module-attr warning in the worker module's py2 code
Differential Revision: https://phab.mercurial-scm.org/D10183
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Thu, 11 Mar 2021 21:09:55 -0500 |
parents | a42502e9ae6d |
children | d4ba4d51f85f |
line wrap: on
line diff
--- a/mercurial/worker.py Thu Mar 11 21:07:04 2021 -0500 +++ b/mercurial/worker.py Thu Mar 11 21:09:55 2021 -0500 @@ -104,7 +104,9 @@ else: def ismainthread(): + # pytype: disable=module-attr return isinstance(threading.current_thread(), threading._MainThread) + # pytype: enable=module-attr def _blockingreader(wrapped): return wrapped