Example #1
0
    def all() :
	from trashcli.list_mount_points import mount_points
        for mount_point in mount_points():
            yield Volume(Path(mount_point))
Example #2
0
File: trash.py Project: ahua/python
def real_list_mount_points():
    from trashcli.list_mount_points import mount_points
    for mount_point in mount_points():
        yield mount_point
Example #3
0
 def list_volumes(self):
     return mount_points()