mirror of
https://github.com/Garmelon/PFERD.git
synced 2026-04-12 07:25:04 +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
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -4,3 +4,4 @@ __pycache__/
|
|||
.tmp/
|
||||
.env
|
||||
.vscode
|
||||
ilias_cookies.txt
|
||||
|
|
|
|||
|
|
@ -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