Skip to content

Commit 0fbd5ac

Browse files
committed
fix: correct import order in self_service.py
Signed-off-by: homalozoa <nx.tardis@gmail.com>
1 parent 9159a45 commit 0fbd5ac

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

ch4/service/ch4_service_py/ch4_service_py/self_service.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15+
from rcl_interfaces.msg import Parameter
16+
from rcl_interfaces.srv import GetParameters
17+
1518
import rclpy
16-
import rclpy.executors
1719

1820
from rclpy.node import Node
19-
from rcl_interfaces.msg import Parameter
20-
from rcl_interfaces.srv import GetParameters
21+
22+
import rclpy.executors
2123

2224

2325
class ServerNode(Node):

0 commit comments

Comments
 (0)