Skip to content

Commit 4bd2535

Browse files
committed
style: format clippy lint allowance for DefaultPostComputeRunner constructor
1 parent 63f4662 commit 4bd2535

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

post-compute/src/compute/app_runner.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@ pub struct DefaultPostComputeRunner {
4949
worker_api_client: WorkerApiClient,
5050
}
5151

52-
#[allow(clippy::new_without_default, reason = "The new method will be replaced by the recommended Default trait implementation later")]
52+
#[allow(
53+
clippy::new_without_default,
54+
reason = "The new method will be replaced by the recommended Default trait implementation later"
55+
)]
5356
impl DefaultPostComputeRunner {
5457
pub fn new() -> Self {
5558
Self {

0 commit comments

Comments
 (0)