From 308604a33c6244960fda9e0fd218a04e1cb8395e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Batuhan=20Berk=20Ba=C5=9Fo=C4=9Flu?= Date: Wed, 7 Oct 2020 18:45:48 -0400 Subject: [PATCH] Fixed a typo. --- DBHelper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DBHelper.py b/DBHelper.py index 87d72411b..f781e0473 100644 --- a/DBHelper.py +++ b/DBHelper.py @@ -100,10 +100,10 @@ class DBHelper: userphoto_str = str(userphoto) storage.child("Photos_of_Thieves/" + str(userphoto)).put("Photos_of_Thieves/" + str(userphoto)) - # Downloads all the user photos, input should be something like "example.png" + # Downloads all the user photos. def downloadalluserphotos(self): storage.child("Photos_of_Users").download("Storage_from_Database") - # Downloads all the thief photos, input should be something like "example.png" + # Downloads all the thief photos. def downloadallthiefphotos(self): storage.child("Photos_of_Thieves").download("Storage_from_Thieves")