Skip to content

Commit

Permalink
Fix call to sublime.platform() in plugin.py (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
mataha authored Dec 6, 2023
1 parent 5def955 commit 0a614e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import os
import sublime

BIOME_EXECUTABLE = 'biome.cmd' if sublime.platform == 'windows' else 'biome'
BIOME_EXECUTABLE = 'biome.cmd' if sublime.platform() == 'windows' else 'biome'


class LspBiomePlugin(NpmClientHandler):
Expand Down

0 comments on commit 0a614e3

Please sign in to comment.