Skip to content

Commit

Permalink
Fix boolean literals
Browse files Browse the repository at this point in the history
  • Loading branch information
FliegendeWurst authored Dec 20, 2024
1 parent c9546de commit dafa28a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ratings-based-shuffle.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ read_options(options, "ratings-based-shuffle")

all_files = {}
ratings = {}
init = False
init = false

function init_playlist()
mp.osd_message("Initializing ratings-based shuffle..")
Expand All @@ -25,7 +25,7 @@ function init_playlist()
mp.register_event("end-file", auto_add_file)
auto_add_file(nil)

init = True
init = true
end

function load(path)
Expand Down

0 comments on commit dafa28a

Please sign in to comment.