Skip to content

Commit 62347f2

Browse files
committed
Fix style
Signed-off-by: Michael X. Grey <[email protected]>
1 parent 65639ee commit 62347f2

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

rclrs/src/executor.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use crate::{
2-
rcl_bindings::rcl_context_is_valid, Context, ContextHandle, IntoNodeOptions, Node, NodeState, RclrsError,
3-
WaitSet,
2+
rcl_bindings::rcl_context_is_valid, Context, ContextHandle, IntoNodeOptions, Node, NodeState,
3+
RclrsError, WaitSet,
44
};
55
use std::{
66
sync::{Arc, Mutex, Weak},

rclrs/src/node.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ use std::{
1919
use rosidl_runtime_rs::Message;
2020

2121
use crate::{
22-
rcl_bindings::*, Client, ClientBase, ClientOptions, ClientState, Clock, ContextHandle, GuardCondition,
23-
LogParams, Logger, ParameterBuilder, ParameterInterface, ParameterVariant, Parameters,
24-
Publisher, PublisherOptions, PublisherState, RclrsError, Service, ServiceBase, ServiceOptions, ServiceState, Subscription,
25-
SubscriptionBase, SubscriptionCallback, SubscriptionOptions, SubscriptionState, TimeSource, ToLogParams,
26-
ENTITY_LIFECYCLE_MUTEX,
22+
rcl_bindings::*, Client, ClientBase, ClientOptions, ClientState, Clock, ContextHandle,
23+
GuardCondition, LogParams, Logger, ParameterBuilder, ParameterInterface, ParameterVariant,
24+
Parameters, Publisher, PublisherOptions, PublisherState, RclrsError, Service, ServiceBase,
25+
ServiceOptions, ServiceState, Subscription, SubscriptionBase, SubscriptionCallback,
26+
SubscriptionOptions, SubscriptionState, TimeSource, ToLogParams, ENTITY_LIFECYCLE_MUTEX,
2727
};
2828

2929
// SAFETY: The functions accessing this type, including drop(), shouldn't care about the thread

rclrs/src/time_source.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
use crate::{
22
clock::{Clock, ClockSource, ClockType},
33
vendor::rosgraph_msgs::msg::Clock as ClockMsg,
4-
IntoPrimitiveOptions, Node, NodeState, QoSProfile, ReadOnlyParameter, Subscription, QOS_PROFILE_CLOCK,
4+
IntoPrimitiveOptions, Node, NodeState, QoSProfile, ReadOnlyParameter, Subscription,
5+
QOS_PROFILE_CLOCK,
56
};
67
use std::sync::{Arc, Mutex, RwLock, Weak};
78

0 commit comments

Comments
 (0)