Non ascii bytes literals detectedPYL-E1610
Non-ascii byte literals are being used in this file. They are no longer supported in Python 3.
Bad practice
some_var = b"國華"
Recommended
some_var = b"Guohua"
Non-ascii byte literals are being used in this file. They are no longer supported in Python 3.
some_var = b"國華"
some_var = b"Guohua"