diff options
author | Bas van Beek <b.f.van.beek@vu.nl> | 2020-11-25 14:15:02 +0100 |
---|---|---|
committer | Bas van Beek <b.f.van.beek@vu.nl> | 2020-11-25 14:15:02 +0100 |
commit | 8775e5d44726fbd26631c657e904022b6b70500e (patch) | |
tree | 9190cf84b7ee6ff87e2962a138fb5896423f8d2e /numpy/typing | |
parent | 107b2e876b179a4d99836d48f90aa512b1fd8838 (diff) | |
download | numpy-8775e5d44726fbd26631c657e904022b6b70500e.tar.gz |
STY: Removed an unused f-string
Diffstat (limited to 'numpy/typing')
-rw-r--r-- | numpy/typing/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/typing/__init__.py b/numpy/typing/__init__.py index 2dc224dd7..054777c1a 100644 --- a/numpy/typing/__init__.py +++ b/numpy/typing/__init__.py @@ -221,7 +221,7 @@ from ._dtype_like import _SupportsDType, _VoidDTypeLike, DTypeLike if __doc__ is not None: from ._add_docstring import _docstrings __doc__ += _docstrings - __doc__ += f'\n.. autoclass:: numpy.typing.NBitBase\n' + __doc__ += '\n.. autoclass:: numpy.typing.NBitBase\n' del _docstrings from numpy._pytesttester import PytestTester |