Skip to content

Commit 74b7541

Browse files
committed
Pylint tweak
1 parent 7912334 commit 74b7541

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Twitter_API/binascii.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def _transform(n):
3333
table_a2b_base64 = ''.join(map(_transform, table_a2b_base64))
3434
assert len(table_a2b_base64) == 256
3535

36-
def a2b_base64(ascii):
36+
def a2b_base64(ascii_data):
3737
"Decode a line of base64 data."
3838

3939
res = []
@@ -42,7 +42,7 @@ def a2b_base64(ascii):
4242
leftbits = 0
4343
last_char_was_a_pad = False
4444

45-
for c in ascii:
45+
for c in ascii_data:
4646
c = chr(c)
4747
if c == PAD:
4848
if quad_pos > 2 or (quad_pos == 2 and last_char_was_a_pad):

0 commit comments

Comments
 (0)