Skip to content

Commit

Permalink
Fix example in docs and remove codecov python import
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Apr 16, 2023
1 parent bc9104d commit 2e66beb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools build tox coverage codecov
python -m pip install --upgrade pip setuptools build tox coverage
- name: Test
run: |
python -m tox
Expand Down
4 changes: 2 additions & 2 deletions docs/src/markdown/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ You can match a single tag:

```pycon3
>>> els = sv.select('p:is(.a, .b, .c)', soup)
>>> sv.match(els[0], 'p:not(.b)')
>>> sv.match('p:not(.b)', els[0])
True
>>> sv.match(els[1], 'p:not(.b)')
>>> sv.match('p:not(.b)', els[1])
False
```

Expand Down

0 comments on commit 2e66beb

Please sign in to comment.