Skip to content

Commit a129217

Browse files
committed
docs.
1 parent e6dbf83 commit a129217

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

plexapi/playlist.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -153,20 +153,18 @@ def create(cls, server, title, items=None, section=None, limit=None, smart=False
153153
"""Create a playlist.
154154
155155
Parameters:
156-
server (:class:`~plexapi.server.PlexServer`): Server your connected to
156+
server (:class:`~plexapi.server.PlexServer`): Server your connected to.
157157
title (str): Title of the playlist.
158-
items (Iterable): Iterable of objects that should be in the playlist
158+
items (Iterable): Iterable of objects that should be in the playlist.
159159
section (:class:`~plexapi.library.LibrarySection, str):
160-
limit (int): default None
161-
smart (bool): default False
160+
limit (int): default None.
161+
smart (bool): default False.
162162
163163
**kwargs dict:
164164
is passed to the filters. For a example see the search method.
165165
166166
returns:
167167
class:`~plexapi.playlist.Playlist
168-
169-
170168
"""
171169
if smart:
172170
return cls._createSmart(server, title, section, limit, **kwargs)

0 commit comments

Comments
 (0)