Skip to content

Commit

Permalink
Fix pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Dec 5, 2024
1 parent 987d9f0 commit c2284cf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/ddmarlinpandora/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class Ddmarlinpandora(CMakePackage, Ilcsoftpackage):

def setup_build_environment(self, env):
if "+monitoring" in self.spec:
env.set('PANDORA_MONITORING', 'ON')
env.set("PANDORA_MONITORING", "ON")

def setup_run_environment(self, env):
env.prepend_path("MARLIN_DLL", self.prefix.lib + "/libDDMarlinPandora.so")
Expand Down
2 changes: 1 addition & 1 deletion packages/larcontent/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class Larcontent(CMakePackage):

def setup_build_environment(self, env):
if "+monitoring" in self.spec:
env.set('PANDORA_MONITORING', 'ON')
env.set("PANDORA_MONITORING", "ON")

def cmake_args(self):
args = [
Expand Down
2 changes: 1 addition & 1 deletion packages/lccontent/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Lccontent(CMakePackage):

def setup_build_environment(self, env):
if "+monitoring" in self.spec:
env.set('PANDORA_MONITORING', 'ON')
env.set("PANDORA_MONITORING", "ON")

def cmake_args(self):
args = [
Expand Down

0 comments on commit c2284cf

Please sign in to comment.