mirror of
https://github.com/Garmelon/PFERD.git
synced 2025-09-09 14:12:26 +02:00
Fix type errors in example_config
This commit is contained in:
@@ -3,11 +3,11 @@ from pathlib import Path
|
||||
from PFERD import Pferd, enable_logging
|
||||
|
||||
|
||||
def main():
|
||||
def main() -> None:
|
||||
enable_logging()
|
||||
pferd = Pferd(Path(__file__).parent)
|
||||
|
||||
pferd.ilias_kit("DB", "1101554", cookies="ilias_cookies.txt")
|
||||
pferd.ilias_kit(Path("DB"), "1101554", cookies=Path("ilias_cookies.txt"))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
Reference in New Issue
Block a user