mirror of
https://github.com/ModOrganizer2/modorganizer-basic_games.git
synced 2026-07-27 14:07:29 -07:00
8 lines
149 B
Python
8 lines
149 B
Python
from typing import TypeGuard
|
|
|
|
import mobase
|
|
|
|
|
|
def is_directory(entry: mobase.FileTreeEntry) -> TypeGuard[mobase.IFileTree]:
|
|
return entry.isDir()
|