We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1958612 commit 40c6b72Copy full SHA for 40c6b72
src/fprime/util/commands.py
@@ -205,7 +205,9 @@ def run_code_format(
205
for excluded_dir in parsed.exclude:
206
excluded_path = Path(excluded_dir)
207
if not excluded_path.is_dir():
208
- print(f"[INFO] {excluded_path} is not a directory. Skipping it from excluded directories.")
+ print(
209
+ f"[INFO] {excluded_path} is not a directory. Skipping it from excluded directories."
210
+ )
211
continue
212
for allowed_ext in clang_formatter.allowed_extensions:
213
for file in excluded_path.rglob(f"*{allowed_ext}"):
0 commit comments