Skip to content

Commit

Permalink
chore: fixed lint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
rnr committed Jul 18, 2024
1 parent 2b0fe97 commit 43f0325
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/Core/Network/DownloadManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ public class DownloadManager: DownloadManagerProtocol {
public func deleteFile(blocks: [CourseBlock]) async {
for block in blocks {
do {
if let fileURL = fileUrl(for: block.id),
if let fileURL = fileUrl(for: block.id),
FileManager.default.fileExists(atPath: fileURL.path) {
try FileManager.default.removeItem(at: fileURL)
}
Expand Down

0 comments on commit 43f0325

Please sign in to comment.