Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 575e768

Browse files
committed
appease the linters
1 parent 5699023 commit 575e768

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# mpl-probscale
2+
23
Real probability scales for matplotlib
34

45
![Code Style](https://github.com/matplotlib/mpl-probscale/workflows/black/badge.svg)
@@ -7,7 +8,6 @@ Real probability scales for matplotlib
78
![Basic Tests](https://github.com/matplotlib/mpl-probscale/workflows/Basic%20unit%20tests/badge.svg)
89
![Image Comparisons](https://github.com/matplotlib/mpl-probscale/workflows/Image%20comparison%20tests/badge.svg)
910

10-
1111
[Sphinx Docs](http://matplotlib.org/mpl-probscale/)
1212

1313
## Installation
@@ -24,7 +24,7 @@ Official releases are available through the conda-forge channel or pip
2424

2525
This is a pure-python package, so building from source is easy on all platforms:
2626

27-
```
27+
```shell
2828
git clone [email protected]:matplotlib/mpl-probscale.git
2929
cd mpl-probscale
3030
pip install -e .
@@ -44,7 +44,6 @@ or
4444

4545
In the next release, this depedency will be made optional.
4646

47-
4847
## Quick start
4948

5049
Simply importing `probscale` lets you use probability scales in your matplotlib figures:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import re
55
from setuptools import setup, find_packages
66

7+
78
def search(substr: str, content: str):
89
found = re.search(substr, content)
910
if found:

0 commit comments

Comments
 (0)