Skip to content

Commit b82d853

Browse files
committed
style(dev): Some PEP8-y fixes
1 parent 85f1dc8 commit b82d853

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

piazza_api/network.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,6 @@ def get_feed(self, limit=100, offset=0):
188188
:param limit: Number of posts from feed to get, starting from ``offset``
189189
:type offset: int
190190
:param offset: Offset starting from bottom of feed
191-
:type sort: str
192191
:rtype: dict
193192
:returns: Feed metadata, including list of posts in feed format; this
194193
means they are not the full posts but only in partial form as

piazza_api/piazza.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from .rpc import PiazzaRPC
2-
from .exceptions import NotAuthenticatedError
32
from .network import Network
43

54

piazza_api/rpc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import requests
55

66
from piazza_api.exceptions import AuthenticationError, NotAuthenticatedError, \
7-
RequestError, NoNetworkIDError
7+
RequestError
88

99

1010
class PiazzaRPC(object):

0 commit comments

Comments
 (0)