Skip to content

Commit 19e22de

Browse files
Formatting
1 parent e332337 commit 19e22de

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/extensions/score_metamodel/checks/check_options.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,7 @@ def remove_prefix(word: str, prefixes: list[str]) -> str:
8282
try:
8383
if not re.match(pattern, value):
8484
log.warning_for_option(
85-
need,
86-
field,
87-
f"does not follow pattern `{pattern}`."
85+
need, field, f"does not follow pattern `{pattern}`."
8886
)
8987
except TypeError:
9088
log.warning_for_option(

src/extensions/score_metamodel/metamodel.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ graph_checks:
720720
include: comp_req, feat_req
721721
condition: safety == ASIL_B
722722
check:
723-
satisfies:
723+
satisfies:
724724
or:
725725
- safety == ASIL_B
726726
- safety == QM

src/extensions/score_source_code_linker/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ def setup_once(app: Sphinx, config: Config):
5656
if "skip_rescanning_via_source_code_linker" in app.config:
5757
return
5858
LOGGER.debug(f"DEBUG: Workspace root is {find_ws_root()}")
59-
LOGGER.debug(f"DEBUG: Current working directory is {Path('.')} = {Path('.').resolve()}")
59+
LOGGER.debug(
60+
f"DEBUG: Current working directory is {Path('.')} = {Path('.').resolve()}"
61+
)
6062
LOGGER.debug(f"DEBUG: Git root is {find_git_root()}")
6163

6264
# Run only for local files!

0 commit comments

Comments
 (0)