From 3a21605b05af36804bce3046295db3d39bef8aae Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 15 Aug 2022 17:49:31 +0530 Subject: [PATCH] ... --- .github/workflows/ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.py b/.github/workflows/ci.py index f42401fa6..8440708a8 100644 --- a/.github/workflows/ci.py +++ b/.github/workflows/ci.py @@ -30,7 +30,7 @@ def install_deps(): print('Installing kitty dependencies...') sys.stdout.flush() if is_macos: - items = (x.split()[1].strip('"') for x in open('Brewfile').readlines() if x.strip().startswith('brew ')) + items = [x.split()[1].strip('"') for x in open('Brewfile').readlines() if x.strip().startswith('brew ')] openssl = 'openssl' items.remove('go') # already installed by ci.yml import ssl