Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2d0a55f

Browse files
authored
fix a typo in the convert-cache.py script (#6253)
1 parent 1d335d3 commit 2d0a55f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

misc/convert-cache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def main() -> None:
2222
help="Output cache location (default: same as input)")
2323
parser.add_argument('input_dir',
2424
help="Input directory for the cache")
25-
args parser.parse_args()
25+
args = parser.parse_args()
2626

2727
input_dir = args.input_dir
2828
output_dir = args.output_dir or input_dir

0 commit comments

Comments
 (0)