Fixed a typo.
This commit is contained in:
parent
59b8f15d96
commit
308604a33c
1 changed files with 2 additions and 2 deletions
|
@ -100,10 +100,10 @@ class DBHelper:
|
||||||
userphoto_str = str(userphoto)
|
userphoto_str = str(userphoto)
|
||||||
storage.child("Photos_of_Thieves/" + str(userphoto)).put("Photos_of_Thieves/" + 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):
|
def downloadalluserphotos(self):
|
||||||
storage.child("Photos_of_Users").download("Storage_from_Database")
|
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):
|
def downloadallthiefphotos(self):
|
||||||
storage.child("Photos_of_Thieves").download("Storage_from_Thieves")
|
storage.child("Photos_of_Thieves").download("Storage_from_Thieves")
|
||||||
|
|
Loading…
Reference in a new issue