File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 12
12
plugin_name = "OctoPrint-PiSupport"
13
13
14
14
# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
15
- plugin_version = "2022.6.13 "
15
+ plugin_version = "2023.5.24 "
16
16
17
17
# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
18
18
# module
@@ -182,7 +182,8 @@ def delete_folder_if_empty(path, applied_handler):
182
182
if not self .dry_run :
183
183
shutil .rmtree (path )
184
184
print (
185
- "removed %s since it was empty" % path [len (self .source_folder ) :]
185
+ "removed %s since it was empty"
186
+ % path [len (self .source_folder ) :]
186
187
)
187
188
188
189
def delete_file (path ):
@@ -758,7 +759,9 @@ def read_file_contents(path):
758
759
},
759
760
)
760
761
761
- setup_parameters ["long_description" ] = read_file_contents (os .path .join (here , "README.md" ))
762
+ setup_parameters ["long_description" ] = read_file_contents (
763
+ os .path .join (here , "README.md" )
764
+ )
762
765
setup_parameters ["long_description_content_type" ] = "text/markdown"
763
766
764
767
setup (** setup_parameters )
You can’t perform that action at this time.
0 commit comments