Skip to content

Commit

Permalink
Fixed flake8 errors (#72)
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro Hernández Cordero <[email protected]>
  • Loading branch information
ahcorde authored Mar 25, 2024
1 parent 8147827 commit 37d4b68
Showing 1 changed file with 5 additions and 4 deletions.
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

0 comments on commit 37d4b68

Please sign in to comment.