Skip to content

Commit

Permalink
Fix pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Aug 8, 2024
1 parent 97de894 commit c799d8a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 3 additions & 1 deletion k4FWCore/python/k4FWCore/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ def check_wrong_imports(code: str) -> None:
R
"""
iosvc_regex = re.compile(r"^\s*from\s+(Configurables|k4FWCore)\s+import\s+\(?.*IOSvc.*\)?", re.MULTILINE)
iosvc_regex = re.compile(
r"^\s*from\s+(Configurables|k4FWCore)\s+import\s+\(?.*IOSvc.*\)?", re.MULTILINE
)
regex = re.compile(
r"^\s*from\s+Configurables\s+import\s+\(?.*(ApplicationMgr|IOSvc).*\)?", re.MULTILINE
)
Expand Down
2 changes: 0 additions & 2 deletions test/k4FWCoreTest/options/runFunctionalMix.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,10 @@
# Check we can read input
consumer_input_functional,
consumer_input_algorithm,

# Check we can read what's produced by a functional
producer_functional,
consumer_producerfun_functional,
consumer_producerfun_algorithm,

# Check we can read what's produced by an algorithm
producer_algorithm,
consumer_produceralg_functional,
Expand Down

0 comments on commit c799d8a

Please sign in to comment.