mirror of
https://github.com/opencv/opencv.git
synced 2026-07-25 21:33:04 +04:00
9cc60c9dd3
Avoid `SyntaxWarning` on Python >= 3.8 ``` >>> "convolutional" == "convolutional" True >>> "convolutional" is "convolutional" <stdin>:1: SyntaxWarning: "is" with a literal. Did you mean "=="? True ``` Related to #21121