Skip to content

Commit 33f7aa4

Browse files
committed
Fix docstring
1 parent 14f39a4 commit 33f7aa4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plexapi/library.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1586,11 +1586,11 @@ def _loadData(self, data):
15861586
self.title = data.attrib.get('title')
15871587

15881588
def browse(self, includeFiles=True):
1589-
""" Alias for :func:`~plexapi.server.PlexServer.browse()`. """
1589+
""" Alias for :func:`~plexapi.server.PlexServer.browse`. """
15901590
return self._server.browse(self, includeFiles)
15911591

15921592
def walk(self):
1593-
""" Alias for :func:`~plexapi.server.PlexServer.walk()`. """
1593+
""" Alias for :func:`~plexapi.server.PlexServer.walk`. """
15941594
for path, paths, files in self._server.walk(self):
15951595
yield path, paths, files
15961596

0 commit comments

Comments
 (0)