Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nickmitchko authored Feb 28, 2022
1 parent 566b491 commit 64a8370
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions octoprint_filamentreload/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,12 @@ def no_filament(self):

##~~ AssetPlugin mixin
def get_assets(self):
return dict(js=["js/filamentreload.js"],css=["css/filamentreload.css"])
return {
"js": ["js/filamentreload.js"],
"less": ["less/filamentreload.less"],
"css": ["css/filamentreload.css"]
}
# return dict(js=["js/filamentreload.js"],css=["css/filamentreload.css"],less=["less/psucontrol.less"],)


def get_template_configs(self):
Expand Down Expand Up @@ -291,7 +296,7 @@ def get_update_information(self):


__plugin_name__ = "Filament Sensor Reloaded"
__plugin_version__ = "1.3.4"
__plugin_version__ = "1.4.0"
__plugin_pythoncompat__ = ">=2.7,<4"


Expand Down

0 comments on commit 64a8370

Please sign in to comment.