Python Command - Import created module: expected an indent block

I’m having an issue with creating a command; once I import a module that I have worked on, it throws an expected indent block message; while not having the import, lets the command work without any issue.

import rhinoscriptsyntax as rs

def RunCommand( is_interactive ):
    print "test"

RunCommand(True)

import rhinoscriptsyntax as rs
import AcmNumber


def RunCommand( is_interactive ):
    print "test"
    


RunCommand(True)

It likely means that the error happens in AcmNumber.
Try opening the AcmNumber module, run it and see the line number.

You are correct, it was because I didn’t set up the "is __name__ == __"main":" inside of AcmNumber properly; after doing so, everything runs well.