Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed flake8 errors #72

Merged
merged 1 commit into from
Mar 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions point_cloud_transport/doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
from datetime import datetime

import os
import sys
sys.path.insert(0, os.path.abspath('.'))
Expand All @@ -33,9 +35,8 @@
# -- Project information -----------------------------------------------------


from datetime import datetime
now = datetime.now() # current date and time
year = now.strftime("%Y")
now = datetime.now() # current date and time
year = now.strftime('%Y')

project = 'point_cloud_transport'
copyright = '2008-' + year + ', Open Source Robotics Foundation, Inc.' # noqa
Expand All @@ -62,7 +63,7 @@
'sphinx.ext.doctest',
'sphinx.ext.coverage',
'sphinx_rtd_theme',
"myst_parser",
'myst_parser',
]

# Add any paths that contain templates here, relative to this directory.
Expand Down
Loading