We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 056706b commit 40e1aa2Copy full SHA for 40e1aa2
crates/pet-python-utils/src/cache.rs
@@ -91,7 +91,7 @@ impl CacheImpl {
91
Entry::Occupied(lock) => lock.get().clone(),
92
Entry::Vacant(lock) => {
93
let cache = Box::new(CacheEntryImpl::create(cache_directory.clone(), executable))
94
- as Box<(dyn CacheEntry + 'static)>;
+ as Box<dyn CacheEntry + 'static>;
95
lock.insert(Arc::new(Mutex::new(cache))).clone()
96
}
97
0 commit comments