mirror of
https://github.com/Garmelon/PFERD.git
synced 2026-04-12 15:35:05 +02:00
Fix type errors in example_config
This commit is contained in:
parent
bef210ae77
commit
3a57430893
2 changed files with 3 additions and 2 deletions
|
|
@ -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__":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue