Skip to content

Commit 2e66beb

Browse files
committed
Fix example in docs and remove codecov python import
1 parent bc9104d commit 2e66beb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
python-version: ${{ matrix.python-version }}
6464
- name: Install dependencies
6565
run: |
66-
python -m pip install --upgrade pip setuptools build tox coverage codecov
66+
python -m pip install --upgrade pip setuptools build tox coverage
6767
- name: Test
6868
run: |
6969
python -m tox

docs/src/markdown/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,9 @@ You can match a single tag:
130130

131131
```pycon3
132132
>>> els = sv.select('p:is(.a, .b, .c)', soup)
133-
>>> sv.match(els[0], 'p:not(.b)')
133+
>>> sv.match('p:not(.b)', els[0])
134134
True
135-
>>> sv.match(els[1], 'p:not(.b)')
135+
>>> sv.match('p:not(.b)', els[1])
136136
False
137137
```
138138

0 commit comments

Comments
 (0)