Skip to content

Commit 71abdc6

Browse files
committed
chore: publish-pypi lint fix
1 parent 301147c commit 71abdc6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/publish-pypi.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -111,14 +111,14 @@ jobs:
111111
echo "Contents of src/stagehand/_sea/"
112112
ls -al src/stagehand/_sea || true
113113
python - <<'PY'
114-
import pathlib, zipfile
115-
for wheel in sorted(pathlib.Path('dist').glob('*.whl')):
116-
print(f"Contents of {wheel.name} entries matching stagehand/_sea")
117-
with zipfile.ZipFile(wheel, 'r') as zf:
118-
for info in zf.infolist():
119-
if 'stagehand/_sea/' in info.filename:
120-
print(info.filename)
121-
PY
114+
import pathlib, zipfile
115+
for wheel in sorted(pathlib.Path("dist").glob("*.whl")):
116+
print(f"Contents of {wheel.name} entries matching stagehand/_sea")
117+
with zipfile.ZipFile(wheel, "r") as zf:
118+
for info in zf.infolist():
119+
if "stagehand/_sea/" in info.filename:
120+
print(info.filename)
121+
PY
122122
123123
- name: Upload wheel artifact
124124
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)