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
@@ -33,7 +33,7 @@ if src is None:
print('Could not open or find the image: ', args.input)
exit(0)
# Convert the image to Gray
src_gray = cv.cvtColor(src, cv.COLOR_BGR2GRAY);
src_gray = cv.cvtColor(src, cv.COLOR_BGR2GRAY)
## [load]
## [window]