Skip to content

Commit 8335ff6

Browse files
committed
cleanup to test update mechanism.
1 parent 28c0e09 commit 8335ff6

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

octoprint_netconnectd/__init__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,7 @@ def _send_message(self, message, data):
244244

245245
__plugin_name__ = "Netconnectd Client"
246246

247+
247248
def __plugin_check__():
248249
import sys
249250
if sys.platform == 'linux2':
@@ -252,12 +253,10 @@ def __plugin_check__():
252253
logging.getLogger("octoprint.plugins." + __name__).warn("The netconnectd plugin only supports Linux")
253254
return False
254255

256+
255257
def __plugin_load__():
256258
# since we depend on a Linux environment, we instantiate the plugin implementation here since this will only be
257259
# called if the OS check above was successful
258260
global __plugin_implementation__
259261
__plugin_implementation__ = NetconnectdSettingsPlugin()
260262
return True
261-
262-
263-

0 commit comments

Comments
 (0)