Skip to content

Commit eb593a3

Browse files
committed
Fixed comment whitespace
1 parent 280d20e commit eb593a3

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

explorecourses/classes.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class Department(object):
2626
name (str): The department name.
2727
code (str): The department code used for searching courses by
2828
department.
29+
2930
"""
3031

3132
def __init__(self, elem: Element):
@@ -504,6 +505,7 @@ def __lt__(self, other):
504505
Returns:
505506
bool: True if the object being compared is less than the Course,
506507
False otherwise.
508+
507509
"""
508510

509511
if type(other) != Course: return False
@@ -529,6 +531,7 @@ def __gt__(self, other):
529531
Returns:
530532
bool: True if the object being compared is greater than the Course,
531533
False otherwise.
534+
532535
"""
533536

534537
if type(other) != Course: return False

explorecourses/course_connection.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ class CourseConnection():
1313
"""
1414
This class is the main entrypoint for the Explore Courses API, which
1515
establishes the HTTP connection and makes all requests.
16+
1617
"""
1718

1819
_URL = "http://explorecourses.stanford.edu/"

0 commit comments

Comments
 (0)