From 7fb6ea83b2c60241f8f6924fb16c973d547e4605 Mon Sep 17 00:00:00 2001 From: Mattia Mascarello Date: Mon, 1 May 2023 17:14:38 +0200 Subject: [PATCH] Remove debug print --- moodle.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/moodle.py b/moodle.py index 7440e5d..6f74921 100644 --- a/moodle.py +++ b/moodle.py @@ -1,6 +1,5 @@ import requests - # a minimalistic moodle api wrapper, just for the purpose of this project # it's not meant to be complete # it's not meant to be efficient @@ -155,7 +154,6 @@ class Moodle: f = Folder(folder_module["id"], folder_module["name"], []) for file in folder_module["contents"]: if file["type"] == "file": - print(file) f.files.append(File(file["filename"], file["filesize"], file["fileurl"])) else: f.files.append(self.__folder_rec_exploder(file))