Closed ertugrul-dmr closed 3 years ago
While checking sadedegel.bblock.util.py I found out space_pad function written twice. They look identical and removing one of them would fix the issue.
sadedegel.bblock.util.py
space_pad
Here's the part:
def space_pad(token): return " " + token + " " def space_pad(token): return " " + token + " "
Closed with #209
While checking
sadedegel.bblock.util.py
I found outspace_pad
function written twice. They look identical and removing one of them would fix the issue.Here's the part: