core/windows: fix get_files and its tests

This commit is contained in:
Dima Gerasimov 2021-02-16 06:11:05 +00:00 committed by karlicoss
parent 6d9bc2964b
commit f102101b39
3 changed files with 59 additions and 22 deletions

View file

@ -60,3 +60,7 @@ else:
from typing import Union
# erm.. I guess as long as it's not crashing, whatever...
Literal = Union
import os
windows = os.name == 'nt'