aboutsummaryrefslogtreecommitdiff
path: root/src/utils/io.py
blob: ff565849a57f4db65ecde3b51476f48df5a41fa1 (about) (plain) (blame)
1
2
3
4
import io

def open(path: str, mode: str):
    return io.open(path, mode=mode, encoding="utf8")