Skip to content

Commit e46c3af

Browse files
committed
PEP8 Code Review
1 parent 8c9355d commit e46c3af

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

ciscosparkapi/api/messages.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,23 +65,19 @@ def markdown(self):
6565
"""Optional attribute; returns None if not present."""
6666
return self._json.get('markdown')
6767

68-
6968
@property
7069
def files(self):
7170
"""Optional attribute; returns None if not present."""
7271
return self._json.get('files')
7372

74-
7573
@property
7674
def personId(self):
7775
return self._json['personId']
7876

79-
8077
@property
8178
def personEmail(self):
8279
return self._json['personEmail']
8380

84-
8581
@property
8682
def created(self):
8783
return self._json['created']

ciscosparkapi/api/people.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,6 @@ def get(self, personId):
164164
# Return a Person object created from the response JSON data
165165
return Person(json_obj)
166166

167-
168167
def me(self):
169168
"""Get the person details of the account accessing the API 'me'.
170169

0 commit comments

Comments
 (0)