Skip to content

Commit

Permalink
fix unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
GIC-de committed Oct 19, 2019
1 parent 49de2b7 commit 75f7aa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyrad/packet.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def CreateAuthenticator():
"""

data = []
for i in range(16):
for _ in range(16):
data.append(random_generator.randrange(0, 256))
if six.PY3:
return bytes(data)
Expand Down

0 comments on commit 75f7aa5

Please sign in to comment.