Skip to content

Commit

Permalink
Merge pull request #119 from bia1708/fix-check
Browse files Browse the repository at this point in the history
  • Loading branch information
tfcollins authored Oct 7, 2024
2 parents 49d6944 + 504e01c commit 0461222
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nebula/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# from pyfiglet import Figlet
# f = Figlet(font="slant")
# print(f.renderText("Nebula"))
import os
import platform

from nebula.builder import builder
from nebula.common import LINUX_DEFAULT_PATH, utils
Expand All @@ -18,7 +18,7 @@
from nebula.tftpboot import tftpboot
from nebula.uart import uart

if os.name in ["nt", "posix"] and os.path.exists(LINUX_DEFAULT_PATH):
if platform.system() == "Linux":
from nebula.usbmux import usbmux

__version__ = "v1.0.0"
Expand Down

0 comments on commit 0461222

Please sign in to comment.