Skip to content

Commit 2467a50

Browse files
committed
Merge branch 'start_full_configuration' of https://github.com/gramaziokohler/compas_fab into start_full_configuration
2 parents 8bcbebe + bc4fe3f commit 2467a50

File tree

4 files changed

+0
-9
lines changed

4 files changed

+0
-9
lines changed

docs/examples/03_backends_ros/files/gh_forward_kinematics.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@
1414
The frame in the world coordinate frame (WCF).
1515
"""
1616
from __future__ import print_function
17-
import logging
18-
19-
LOGGER = logging.getLogger('roslibpy')
2017

2118
if robot and robot.client and full_configuration:
2219
if robot.client.is_connected:

docs/examples/03_backends_ros/files/gh_inverse_kinematics.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,9 @@
1616
full_configuration: The full configuration
1717
"""
1818
from __future__ import print_function
19-
import logging
2019

2120
from compas.geometry import Frame
2221

23-
LOGGER = logging.getLogger('roslibpy')
2422

2523
frame = Frame(plane.Origin, plane.XAxis, plane.YAxis)
2624

docs/examples/03_backends_ros/files/gh_plan_cartesian_motion.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,10 @@
2323
The calculated trajectory.
2424
"""
2525
from __future__ import print_function
26-
import logging
2726
import scriptcontext as sc
2827

2928
from compas.geometry import Frame
3029

31-
LOGGER = logging.getLogger('roslibpy')
3230

3331
guid = str(ghenv.Component.InstanceGuid)
3432
response_key = "response_" + guid

docs/examples/03_backends_ros/files/gh_plan_motion.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,13 @@
2525
The calculated trajectory.
2626
"""
2727
from __future__ import print_function
28-
import logging
2928
import scriptcontext as sc
3029

3130
guid = str(ghenv.Component.InstanceGuid)
3231
response_key = "response_" + guid
3332
if response_key not in sc.sticky:
3433
sc.sticky[response_key] = None
3534

36-
LOGGER = logging.getLogger('roslibpy')
3735

3836
if robot and robot.client and start_configuration and compute:
3937
if robot.client.is_connected:

0 commit comments

Comments
 (0)