Skip to content

Commit 2624af2

Browse files
committed
specify dist
1 parent 11e5560 commit 2624af2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/python.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,5 @@ jobs:
5858
with:
5959
user: __token__
6060
password: ${{ secrets.PYPI_TOKEN }}
61+
package: dist/*
6162
skip_existing: true

python/covertable/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def make_async(
111111
row = Row(None, factors, serials, pre_filter)
112112
# When pre_filter is specified,
113113
# it will be applied to incomplete through `row.storable` beforehand.
114-
for pair in list(filter(lambda _: pre_filter, incomplete)): #########
114+
for pair in list(filter(lambda _: pre_filter, incomplete)):
115115
if not row.storable([(parents[p], p) for p in pair]):
116116
incomplete.discard(pair)
117117

0 commit comments

Comments
 (0)