diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-01-26 01:51:59 -0500 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2022-01-27 10:48:01 -0800 |
commit | 3990dc6d6429f6da8917c2f3f719e56fa20ac2ed (patch) | |
tree | a8c243fca13b87cccacc82b2523b99e3bde5e7d6 /mesonbuild/interpreter/compiler.py | |
parent | a28d5467954572767389729691e497d4da44b16e (diff) | |
download | meson-3990dc6d6429f6da8917c2f3f719e56fa20ac2ed.zip meson-3990dc6d6429f6da8917c2f3f719e56fa20ac2ed.tar.gz meson-3990dc6d6429f6da8917c2f3f719e56fa20ac2ed.tar.bz2 |
flake8: fix indentation style
Diffstat (limited to 'mesonbuild/interpreter/compiler.py')
-rw-r--r-- | mesonbuild/interpreter/compiler.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mesonbuild/interpreter/compiler.py b/mesonbuild/interpreter/compiler.py index b46f1fe..1242d7a 100644 --- a/mesonbuild/interpreter/compiler.py +++ b/mesonbuild/interpreter/compiler.py @@ -222,9 +222,9 @@ class CompilerHolder(ObjectHolder['Compiler']): return self.compiler.exelist def _determine_args(self, nobuiltins: bool, - incdirs: T.List[build.IncludeDirs], - extra_args: T.List[str], - mode: CompileCheckMode = CompileCheckMode.LINK) -> T.List[str]: + incdirs: T.List[build.IncludeDirs], + extra_args: T.List[str], + mode: CompileCheckMode = CompileCheckMode.LINK) -> T.List[str]: args: T.List[str] = [] for i in incdirs: for idir in i.to_string_list(self.environment.get_source_dir()): |