Skip to content

Commit 40e1aa2

Browse files
committed
formatting
1 parent 056706b commit 40e1aa2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/pet-python-utils/src/cache.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ impl CacheImpl {
9191
Entry::Occupied(lock) => lock.get().clone(),
9292
Entry::Vacant(lock) => {
9393
let cache = Box::new(CacheEntryImpl::create(cache_directory.clone(), executable))
94-
as Box<(dyn CacheEntry + 'static)>;
94+
as Box<dyn CacheEntry + 'static>;
9595
lock.insert(Arc::new(Mutex::new(cache))).clone()
9696
}
9797
}

0 commit comments

Comments
 (0)