File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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/"
You can’t perform that action at this time.
0 commit comments