SyntaxError in Python2.x

Issue #14 resolved
Former user created an issue

In Python2.x, Version 0.6 gives the following error:

SchemDraw\elements.py", line 1796
    def multiplexer(*pins, demux=False, **kwargs):
                               ^
SyntaxError: invalid syntax

It is due to the order of variable-length argument and the other argument. By putting demux=False at the first slot, it works fine!

Comments (1)

  1. Log in to comment