mirror of https://github.com/exaloop/codon.git
3 lines
68 B
Python
3 lines
68 B
Python
|
def open(path: str, mode: str = 'r'):
|
||
|
return gzFile(path, mode)
|