Skip to content

Commit

Permalink
🔧 Fix syntax due to treesitter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ronisbr committed May 15, 2024
1 parent 516afbd commit 7520df0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/api.jl
Original file line number Diff line number Diff line change
Expand Up @@ -161,12 +161,12 @@ function _fetch_files(::Type{T}; force_download::Bool = false) where T<:SpaceInd
filepaths = Vector{String}(undef, num_T_urls)

for k in 1:num_T_urls
filepaths[begin + k - 1] = _download_file(
T_urls[begin + k - 1],
filepaths[k - 1 + begin] = _download_file(
T_urls[k - 1 + begin],
key,
T_filenames[begin + k - 1];
force_download = force_download,
expiry_period = T_expiry_periods[begin + k - 1]
expiry_period = T_expiry_periods[k - 1 + begin]
)
end

Expand Down

0 comments on commit 7520df0

Please sign in to comment.