Removed prints
This commit is contained in:
parent
505df54a1e
commit
7bd89c1649
|
@ -135,13 +135,7 @@ def crc(_string):
|
||||||
'''Calculate the Zero CRC from string and return it as number.'''
|
'''Calculate the Zero CRC from string and return it as number.'''
|
||||||
crc_ = 0
|
crc_ = 0
|
||||||
crc_ = return_lowest_bits(~crc_)
|
crc_ = return_lowest_bits(~crc_)
|
||||||
# string = _string.decode("ascii")
|
|
||||||
string = _string.decode("utf-8")
|
string = _string.decode("utf-8")
|
||||||
print("")
|
|
||||||
print("")
|
|
||||||
print(string)
|
|
||||||
print("")
|
|
||||||
print("")
|
|
||||||
if string:
|
if string:
|
||||||
for char in string:
|
for char in string:
|
||||||
ind = (crc_ >> 24)
|
ind = (crc_ >> 24)
|
||||||
|
|
Loading…
Reference in New Issue