Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Mar 27, 2024
1 parent e21e276 commit a796755
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions all_repos/sed.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
from all_repos.config import Config
from all_repos.util import zsplit

SED_EXEC = "sed"
SED_EXEC = 'sed'
if platform.system() == 'Darwin': # pragma: no cover
if not shutil.which("gsed"):
if not shutil.which('gsed'):
print('MacOS specific prerequisite missing, please install it with: brew install gnu-sed')
sys.exit(2)

SED_EXEC = "gsed"
SED_EXEC = 'gsed'


def find_repos(
Expand Down

0 comments on commit a796755

Please sign in to comment.