Removed prints

This commit is contained in:
itdominator 2021-05-23 15:38:33 -05:00
parent 505df54a1e
commit 7bd89c1649
1 changed files with 0 additions and 6 deletions

View File

@ -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)