Skip to content

Commit 8e3583f

Browse files
committed
Apply black formatter
1 parent f503ad2 commit 8e3583f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/fprime/fbuild/cli.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" fprime.fbuild.cli: fbuild command line processing
1+
"""fprime.fbuild.cli: fbuild command line processing
22
33
Command line processing functions for fbuild (fprime build system targets) of "generate", "purge", and build system
44
target operations.
@@ -64,14 +64,14 @@ def run_fbuild_cli(
6464
cmake_args["ENABLE_SANITIZER_UNDEFINED_BEHAVIOR"] = "OFF"
6565
if toolchain is not None:
6666
cmake_args["CMAKE_TOOLCHAIN_FILE"] = toolchain
67-
67+
6868
if parsed.make:
6969
# No need to change CMAKE_GENERATOR since the default is Unix Makefiles
7070
pass
7171
else:
7272
# Sets Ninja as the default build system
7373
cmake_args["CMAKE_GENERATOR"] = "Ninja"
74-
74+
7575
build.generate(cmake_args)
7676
elif parsed.command == "purge":
7777
# Since purge does not load its "base", we need to overload the platform

0 commit comments

Comments
 (0)