Commit 0517f20 Abeautifulsnow
committed
1 parent ce54c98 commit 0517f20 Copy full SHA for 0517f20
File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -540,13 +540,13 @@ def get_result(
540
540
cache_key = self .get_cache_key (key )
541
541
542
542
if self .no_cache :
543
- return self .get_result_with_no_cache (key , nocache_fn , param )
543
+ return self .get_result_with_no_cache (cache_key , nocache_fn , param )
544
544
else :
545
545
cache_res = self .get_result_with_cache (cache_key )
546
546
if cache_res :
547
547
return (cache_res ,)
548
548
else :
549
- return self .get_result_with_no_cache (key , nocache_fn , param )
549
+ return self .get_result_with_no_cache (cache_key , nocache_fn , param )
550
550
551
551
552
552
def print_total_time_elapsed (start_time : float , time_end : Optional [float ] = None ):
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " pkgu"
3
- version = " 0.0.21 "
3
+ version = " 0.0.22 "
4
4
description = " Find the out-dated packages installed by the pip tool and update them."
5
5
authors = [" Abeautifulsnow <lnrunstone.0727@gmail.com>" ]
6
6
You can’t perform that action at this time.
0 commit comments