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.'''
|
||||
crc_ = 0
|
||||
crc_ = return_lowest_bits(~crc_)
|
||||
# string = _string.decode("ascii")
|
||||
string = _string.decode("utf-8")
|
||||
print("")
|
||||
print("")
|
||||
print(string)
|
||||
print("")
|
||||
print("")
|
||||
if string:
|
||||
for char in string:
|
||||
ind = (crc_ >> 24)
|
||||
|
|
Loading…
Reference in New Issue