Skip to content

Commit 4b16021

Browse files
committed
Fixed flake8 errors
Signed-off-by: Alejandro Hernández Cordero <[email protected]>
1 parent 147308a commit 4b16021

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

point_cloud_transport/doc/conf.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
# If extensions (or modules to document with autodoc) are in another directory,
2626
# add these directories to sys.path here. If the directory is relative to the
2727
# documentation root, use os.path.abspath to make it absolute, like shown here.
28+
from datetime import datetime
29+
2830
import os
2931
import sys
3032
sys.path.insert(0, os.path.abspath('.'))
@@ -33,9 +35,8 @@
3335
# -- Project information -----------------------------------------------------
3436

3537

36-
from datetime import datetime
37-
now = datetime.now() # current date and time
38-
year = now.strftime("%Y")
38+
now = datetime.now() # current date and time
39+
year = now.strftime('%Y')
3940

4041
project = 'point_cloud_transport'
4142
copyright = '2008-' + year + ', Open Source Robotics Foundation, Inc.' # noqa
@@ -62,7 +63,7 @@
6263
'sphinx.ext.doctest',
6364
'sphinx.ext.coverage',
6465
'sphinx_rtd_theme',
65-
"myst_parser",
66+
'myst_parser',
6667
]
6768

6869
# Add any paths that contain templates here, relative to this directory.

0 commit comments

Comments
 (0)