Skip to content

Commit

Permalink
minor python linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jlblancoc committed Aug 6, 2020
1 parent 7d181e7 commit 2678bdf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
# import sys
# sys.path.insert(0, os.path.abspath('.'))

import subprocess, os
import subprocess
import os

read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True'

if read_the_docs_build:
subprocess.call('cd ..; mkdir -p build/html/doxygen/; doxygen', shell=True)

# -- Project information -----------------------------------------------------

project = u'GTSAM'
copyright = u'2020, The GTSAM authors'
author = u'The GTSAM authors'
Expand Down Expand Up @@ -60,7 +60,7 @@
html_theme = 'sphinx_rtd_theme'

html_theme_options = {
# 'analytics_id': 'UA-XXXXXXX-1', # Provided by Google in your dashboard
# 'analytics_id': 'UA-XXXXXXX-1', # Provided by Google in your dashboard
'display_version': True,
# Toc options
'collapse_navigation': True,
Expand Down

0 comments on commit 2678bdf

Please sign in to comment.