Pax1601 abf5f40020 Added logs on client
Airplanes are now shown with silhouettes
2023-02-20 18:17:54 +01:00

5 lines
135 B
Python

from os import listdir
from os.path import isfile, join
onlyfiles = [f for f in listdir(".") if isfile(join(".", f))]
print(onlyfiles)