This required a couple of small tweaks to un-confuse black, but now it
works. Big formatting changes come from:
- Dramatically improved collection-splitting logic upstream
- Black having a strong (correct IMO) opinion that """ is better than '''
indygreg | |
martinvonz | |
mharbison72 |
hg-reviewers |
This required a couple of small tweaks to un-confuse black, but now it
works. Big formatting changes come from:
Automatic diff as part of commit; lint not applicable. |
Automatic diff as part of commit; unit tests not applicable. |
Amended this into setup.py, which was changed in D9427 with the older black:
@@ -816,7 +816,8 @@ class buildhgexe(build_ext): if sys.version_info[0] >= 3: fsdecode = os.fsdecode dest = os.path.join( - os.path.dirname(self.hgtarget), fsdecode(dllbasename), + os.path.dirname(self.hgtarget), + fsdecode(dllbasename), ) if not os.path.exists(dest):