Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
gordonaspin committed Sep 4, 2024
1 parent 786930c commit 9630640
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
5 changes: 5 additions & 0 deletions .venv/pyvenv.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
home = /home/gordon/.pyenv/versions/3.12.1/bin
include-system-site-packages = false
version = 3.12.1
executable = /home/gordon/.pyenv/versions/3.12.1/bin/python3.12
command = /home/gordon/Documents/Development/ml/.venv/bin/python -m venv /home/gordon/Documents/Development/pyicloud/.venv
11 changes: 0 additions & 11 deletions pyicloud/services/drive.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,17 +292,6 @@ def get_children(self, force=False):
]
return self._children

def reget_children(self):
"""Re-gets the node children."""
self.data.update(self.connection.get_node_data(self.data["docwsid"]))
if "items" not in self.data:
raise KeyError("No items in folder, status: %s" % self.data["status"])
self._children = [
DriveNode(self.connection, item_data)
for item_data in self.data["items"]
]
return self._children

def remove(self, child):
for item_data in self.data['items']:
if item_data['docwsid'] == child.data['docwsid']:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup, find_packages

REPO_URL = "https://github.com/gordonaspin/pyicloud"
VERSION = "1.0.0"
VERSION = "1.0.1"

with open("requirements.txt") as f:
required = f.read().splitlines()
Expand Down

0 comments on commit 9630640

Please sign in to comment.