The new version of flake8 is linting f-strings (#1976)

* The new version of flake8 is linting f-strings

* updating DIRECTORY.md

Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
This commit is contained in:
Christian Clauss
2020-05-13 20:03:28 +02:00
committed by GitHub
parent ba8b156fdc
commit 69171a9ac3
2 changed files with 3 additions and 1 deletions

View File

@@ -11,7 +11,7 @@ class NearestNeighbour:
def __init__(self, img, dst_width: int, dst_height: int):
if dst_width < 0 or dst_height < 0:
raise ValueError(f"Destination width/height should be > 0")
raise ValueError("Destination width/height should be > 0")
self.img = img
self.src_w = img.shape[1]