Skip to content

Commit e0c00de

Browse files
committed
retrying flake8 option
1 parent 83d49fd commit e0c00de

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/run_tests.yaml

+6-3
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,12 @@ jobs:
3333
options: "--check --verbose --diff --line-length=120 ./"
3434

3535
- name: Lint with flake8
36-
run: |
37-
# stop the build if there are Python syntax errors or undefined names
38-
$ flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
36+
uses: py-actions/flake8@v2
37+
# run: |
38+
# # stop the build if there are Python syntax errors or undefined names
39+
# $ flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
40+
with:
41+
options: "--count --select=E9,F63,F7,F82 --show-source --statistics"
3942

4043
- name: Run tests
4144
run: |

pybullet_tree_sim/robot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,14 @@ def __init__(
5757
else init_joint_angles
5858
)
5959

60-
self.reset_robot()
6160

6261
# Robot setup
6362
self.robot = None
6463
# Load robot URDF config
6564
self.robot_conf = {}
6665
self._generate_robot_urdf()
6766
self._setup_robot()
67+
self.reset_robot()
6868
self.num_joints = self.pbclient.getNumJoints(self.robot)
6969
self.robot_stack: list = self.robot_conf["robot_stack"]
7070

0 commit comments

Comments
 (0)