1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-25 21:33:04 +04:00

python: eliminate pylint warnings

Tested with:
- pylint 1.9.1
This commit is contained in:
Alexander Alekhin
2018-06-04 17:58:06 +03:00
parent fc35c77f00
commit dcb9bc2544
8 changed files with 10 additions and 10 deletions
@@ -18,7 +18,7 @@ src = cv.cvtColor(src, cv.COLOR_BGR2GRAY)
## [Convert to grayscale]
## [Apply Histogram Equalization]
dst = cv.equalizeHist(src);
dst = cv.equalizeHist(src)
## [Apply Histogram Equalization]
## [Display results]