Skip to content

Commit db0137a

Browse files
committed
build docs plezz
1 parent 86c0029 commit db0137a

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

coderunner/coderunner.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def __submit(self):
9797
def getStandardOutput(self):
9898
"""
9999
Return the standard output of the program
100-
100+
101101
:param: None
102102
:rtype: String
103103
"""
@@ -106,7 +106,7 @@ def getStandardOutput(self):
106106
def getMemory(self):
107107
"""
108108
Return the memory used by the program (in kilobytes)
109-
109+
110110
:param: None
111111
:return: Return the memory for eg 3564 KiloBytes
112112
:rtype: String
@@ -116,7 +116,7 @@ def getMemory(self):
116116
def getError(self):
117117
"""
118118
Return any error occured during program execution
119-
119+
120120
:param: None
121121
:rtype: String
122122
"""
@@ -129,15 +129,15 @@ def getTime(self):
129129
Return execution time used by the program
130130
131131
:param: None
132-
:return: Returns the execution time used by Source Code for e.g 0.037 secs
132+
:return: Returns the execution time used by Source Code for e.g 0.037 secs
133133
:rtype: String
134134
"""
135135
return self.__time
136136

137137
def getStatus(self):
138138
"""
139139
Submits the program on Judge0's server and returns its status
140-
140+
141141
:param: None
142142
:return: Returns either `Accepted` or `Run Time Error`
143143
:rtype: String

docs/conf.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@
3535
# Add any paths that contain templates here, relative to this directory.
3636
templates_path = ['_templates']
3737

38+
# The master toctree document.
39+
master_doc = 'index'
40+
3841
# List of patterns, relative to source directory, that match files and
3942
# directories to ignore when looking for source files.
4043
# This pattern also affects html_static_path and html_extra_path.

0 commit comments

Comments
 (0)