Skip to content

Commit 90c7466

Browse files
cdnclient: docstring tweaks
1 parent 788c1be commit 90c7466

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

steam/client/cdn.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
"""
2+
The :class:`.CDNClient` class provides a simple API for downloading Steam content from SteamPipe
3+
24
Initializing :class:`.CDNClient` requires a logged in :class:`.SteamClient` instance
35
46
.. code:: python
57
68
mysteam = SteamClient()
79
...
8-
910
mycdn = CDNClient(mysteam)
1011
1112
@@ -261,7 +262,6 @@ def load_licenses(self):
261262

262263
packages = list(self.steam.licenses.keys())
263264

264-
# TODO: don't fetch all packages info at the same time (for accounts with many licences)
265265
for package_id, info in iteritems(self.steam.get_product_info(packages=packages)['packages']):
266266
self.licensed_app_ids.update(info['appids'].values())
267267
self.licensed_depot_ids.update(info['depotids'].values())

0 commit comments

Comments
 (0)