File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -233,11 +233,11 @@ def build_symbol_list(filename):
233
233
# We need to use a separate lock here for symbol lists because, unlike with system libraries,
234
234
# it's normally for these file to get pruned as part of normal operation. This means that it
235
235
# can be deleted between the `cache.get()` then the `read_file`.
236
- with filelock .FileLock (cache .get_path (cache . get_path ( 'symbol_lists.lock' ) )):
236
+ with filelock .FileLock (cache .get_path ('symbol_lists.lock' )):
237
237
filename = cache .get (f'symbol_lists/{ content_hash } .json' , build_symbol_list )
238
238
library_syms = json .loads (read_file (filename ))
239
239
240
- # Limit of the overall size of the cache to 100 files .
240
+ # Limit of the overall size of the cache.
241
241
# This code will get test coverage since a full test run of `other` or `core`
242
242
# generates ~1000 unique symbol lists.
243
243
cache_limit = 500
You can’t perform that action at this time.
0 commit comments