mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-24 20:53:09 +00:00
flake fix
line too long
This commit is contained in:
parent
a47f67d3df
commit
ba1559dcdc
1 changed files with 2 additions and 1 deletions
|
@ -395,7 +395,8 @@ class MyPlexAccount(PlexObject):
|
||||||
params = {'server_id': machineId, 'shared_server': {'library_section_ids': sectionIds}}
|
params = {'server_id': machineId, 'shared_server': {'library_section_ids': sectionIds}}
|
||||||
url = self.FRIENDSERVERS.format(machineId=machineId, serverId=serverId)
|
url = self.FRIENDSERVERS.format(machineId=machineId, serverId=serverId)
|
||||||
else:
|
else:
|
||||||
params = {'server_id': machineId, 'shared_server': {'library_section_ids': sectionIds, 'invited_id': user.id}}
|
params = {'server_id': machineId,
|
||||||
|
'shared_server': {'library_section_ids': sectionIds, 'invited_id': user.id}}
|
||||||
url = self.FRIENDINVITE.format(machineId=machineId)
|
url = self.FRIENDINVITE.format(machineId=machineId)
|
||||||
# Remove share sections, add shares to user without shares, or update shares
|
# Remove share sections, add shares to user without shares, or update shares
|
||||||
if not user_servers or sectionIds:
|
if not user_servers or sectionIds:
|
||||||
|
|
Loading…
Reference in a new issue