Skip to content

Commit

Permalink
(flake8) allow double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthijsBurgh committed Apr 15, 2024
1 parent 59433b2 commit e3c2d39
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions pykdl_ros/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<test_depend>ament_pep257</test_depend>
<test_depend>ament_xmllint</test_depend>
<test_depend>python3-flake8-isort</test_depend>
<test_depend>python3-flake8-quotes</test_depend>
<test_depend>python3-pytest</test_depend>

<export>
Expand Down
5 changes: 5 additions & 0 deletions pykdl_ros/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ line-length = 120

[tool.flake8]
max-line-length = 120
docstring-quotes = '"""'
inline-quotes = '"'
multiline-quotes = '"""'
quotes = '"'


[tool.isort]
combine_as_imports = true
Expand Down
1 change: 1 addition & 0 deletions tf2_pykdl_ros/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<test_depend>rclpy</test_depend>
<test_depend>tf2_geometry_msgs</test_depend>
<test_depend>python3-flake8-isort</test_depend>
<test_depend>python3-flake8-quotes</test_depend>
<test_depend>python3-pytest</test_depend>

<export>
Expand Down
4 changes: 4 additions & 0 deletions tf2_pykdl_ros/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ line-length = 120

[tool.flake8]
max-line-length = 120
docstring-quotes = '"""'
inline-quotes = '"'
multiline-quotes = '"""'
quotes = '"'

[tool.isort]
combine_as_imports = true
Expand Down

0 comments on commit e3c2d39

Please sign in to comment.