GlobalMaksimum / sadedegel

A General Purpose NLP library for Turkish
http://sadedegel.ai
MIT License
93 stars 13 forks source link

Found duplicate functions in sadedegel.bblock.util #208

Closed ertugrul-dmr closed 3 years ago

ertugrul-dmr commented 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.

Here's the part:

def space_pad(token):
    return " " + token + " "

def space_pad(token):
    return " " + token + " "
husnusensoy commented 3 years ago

Closed with #209