dirstate: re-blacken file
authorAugie Fackler <augie@google.com>
Mon, 11 Nov 2019 16:14:35 -0500
changeset 43612 dc9c570a3818
parent 43611 27c25c0dc967
child 43613 dbc39f028c9f
dirstate: re-blacken file This got overlooked in landing a recent patch, but it's easy to fix up. Differential Revision: https://phab.mercurial-scm.org/D7367
mercurial/dirstate.py
--- a/mercurial/dirstate.py	Wed Nov 06 16:24:24 2019 +0100
+++ b/mercurial/dirstate.py	Mon Nov 11 16:14:35 2019 -0500
@@ -1114,7 +1114,9 @@
             # how to read the config file.
             numcpus = self._ui.configint("worker", "numcpus")
             if numcpus is not None:
-                encoding.environ.setdefault(b'RAYON_NUM_THREADS', b'%d' % numcpus)
+                encoding.environ.setdefault(
+                    b'RAYON_NUM_THREADS', b'%d' % numcpus
+                )
 
             workers_enabled = self._ui.configbool("worker", "enabled", True)
             if not workers_enabled: