Exemplo n.º 1
0
def removeImagePath(path):
    ImagePath.remove(path)
Exemplo n.º 2
0
def removeImagePath(path):
    ImagePath.remove(path)
Exemplo n.º 3
0
def removeImagePath(*args):
    if (len(args) == 1):
        return ImagePath.remove(args[0])
    elif (len(args) == 2):
        return ImagePath.remove(args[0], args[1])
    return None