diff --git a/.gitignore b/.gitignore index e718a0f..b0e961d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .vscode -output/ \ No newline at end of file +output/ +credentials.yaml diff --git a/export.py b/export.py index 7b5f74e..a339540 100644 --- a/export.py +++ b/export.py @@ -14,7 +14,7 @@ import yaml try: with open("credentials.yaml", 'r') as f: - credentials = yaml.load(f) + credentials = yaml.full_load(f) except OSError: # Canvas API URL API_URL = ""