Skip to content

Commit

Permalink
Added Image icon and theme to documentation. Edited docstrings to rem…
Browse files Browse the repository at this point in the history
…ove author's name in the beginning
  • Loading branch information
nileshchat committed Aug 10, 2017
1 parent e9d5273 commit 346bf2c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion docs/conf.py
Expand Up @@ -87,7 +87,8 @@
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'alabaster'
html_theme = 'sphinx_rtd_theme'
html_logo = '_static/icon.png'

# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
Expand Down
6 changes: 4 additions & 2 deletions orbitdeterminator/test_deploy/deployable.py
Expand Up @@ -56,6 +56,9 @@ def stage(processed):
)
print("File %s has been staged." % (file))

def process(file):
for line in file:
print(line)

def main():

Expand All @@ -67,8 +70,7 @@ def main():
for file in raw_files:
print("processing")
with open(SOURCE_ABSOLUTE + "/" + file, "r") as a:
for i in a:
print(i)
process(a) # Here is where you call the main function.
stage(raw_files)


Expand Down

0 comments on commit 346bf2c

Please sign in to comment.