Skip to content

Commit

Permalink
Remove unnecessary pathlib dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
Thom1729 committed May 16, 2020
1 parent 063e195 commit c3a6664
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/commands/build_syntaxes.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import sublime_plugin

from pathlib import Path
from threading import Thread
from sublime_lib import OutputPanel

Expand Down Expand Up @@ -50,4 +49,4 @@ def run(self, name, configuration, destination_path):
output = OutputPanel.create(self.window, 'YAMLMacros')
output.show()

build_configuration(name, configuration, Path(destination_path), output)
build_configuration(name, configuration, destination_path, output)

0 comments on commit c3a6664

Please sign in to comment.