Skip to content

Commit

Permalink
fixed issues of formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
grnydawn committed Oct 9, 2023
1 parent ab592e8 commit 596eae9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/omega/create_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
import re
import stat
import subprocess
import typing
import sys

import typing

pat_envvar = re.compile(r'^([_\d\w]+)=(.*)$', flags=re.MULTILINE)

Expand Down Expand Up @@ -175,7 +175,7 @@ def get_modules(self, outvar):
if not (mpilib is None or
re.match("^" + mpilib + "$", self.mpilib)):
continue

if not (debug is None or
re.match("^" + debug + "$", self.debug)):
continue
Expand Down Expand Up @@ -232,7 +232,7 @@ def get_envs(self, outvar):
if not (mpilib is None or
re.match("^" + mpilib + "$", self.mpilib)):
continue

if not (debug is None or
re.match("^" + debug + "$", self.debug)):
continue
Expand Down

0 comments on commit 596eae9

Please sign in to comment.