Skip to content
Snippets Groups Projects
Unverified Commit e2867ba5 authored by ulif's avatar ulif
Browse files

Use workaround for linter complaint.

Silent complaint about undefined Python2 keywords, that are only used
when running in Python2 env.
parent 1a2431de
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ from random import SystemRandom
input_func = input
if sys.version[0] < "3":
input_func = raw_input
input_func = raw_input # NOQA: F821 # defined in python 2 only.
class SystemRandomSource(object):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment