remove uneeded '(' and ')'

pull/6658/head
Michael 4 years ago
parent 3225070f8b
commit 46f9a2a12d
  1. 2
      mesonbuild/minit.py

@ -155,7 +155,7 @@ def autodetect_options(options, sample: bool = False) -> None:
if not options.srcfiles:
srcfiles = []
for f in (f for f in Path().iterdir() if f.is_file()):
if f.suffix in (LANG_SUFFIXES):
if f.suffix in LANG_SUFFIXES:
srcfiles.append(f)
if not srcfiles:
raise SystemExit('No recognizable source files found.\n'

Loading…
Cancel
Save