aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/coredata.py
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2023-07-02 17:40:20 -0400
committerEli Schwartz <eschwartz@archlinux.org>2023-07-02 18:03:21 -0400
commit098ac5e0a626e135058df9269e16a35266892ce4 (patch)
tree8387646943b278faa5556d946b0432dc69eed2c6 /mesonbuild/coredata.py
parent052066797336f7d17c56ce625c13887facfbdd60 (diff)
downloadmeson-098ac5e0a626e135058df9269e16a35266892ce4.zip
meson-098ac5e0a626e135058df9269e16a35266892ce4.tar.gz
meson-098ac5e0a626e135058df9269e16a35266892ce4.tar.bz2
genvslite: fix badly overflowing line lengths
Function comments that overflow the screen width by coming after code, instead of on their own line, are hard to read. Same applies to message strings that are all on one line. Fix by reflowing them. Post-facto application of issues that were caught during post-merge review, after the genvslite PR was merged without a full review.
Diffstat (limited to 'mesonbuild/coredata.py')
-rw-r--r--mesonbuild/coredata.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/mesonbuild/coredata.py b/mesonbuild/coredata.py
index 90891a9..0904187 100644
--- a/mesonbuild/coredata.py
+++ b/mesonbuild/coredata.py
@@ -82,7 +82,9 @@ _T = T.TypeVar('_T')
def get_genvs_default_buildtype_list() -> list:
- return buildtypelist[1:-2] # just debug, debugoptimized, and release for now but this should probably be configurable through some extra option, alongside --genvslite.
+ # just debug, debugoptimized, and release for now
+ # but this should probably be configurable through some extra option, alongside --genvslite.
+ return buildtypelist[1:-2]
class MesonVersionMismatchException(MesonException):