Skip to content

Commit 63f4662

Browse files
committed
refactor: update clippy lint for DefaultPostComputeRunner constructor
1 parent 55c7b78 commit 63f4662

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

post-compute/src/compute/app_runner.rs

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

52-
#[allow(clippy::new_without_default)] // We don't need a default constructor for the DefaultPostComputeRunner struct
52+
#[allow(clippy::new_without_default, reason = "The new method will be replaced by the recommended Default trait implementation later")]
5353
impl DefaultPostComputeRunner {
5454
pub fn new() -> Self {
5555
Self {

0 commit comments

Comments
 (0)