Closed JLTrincado closed 3 years ago
Dear authors,
Class definition in python is without parenthesis. Line 22 on pycircos.py shows like this:
class Gcircle(object):
But it should be without the parenthesis:
class Gcircle:
Changing this, the package goes smooth.
Thanks for this tool.
Best, Juanlu.
You are right... I forgot that Python3 doesn't need parenthesis for a class declaration. I modified the code.
Dear authors,
Class definition in python is without parenthesis. Line 22 on pycircos.py shows like this:
But it should be without the parenthesis:
Changing this, the package goes smooth.
Thanks for this tool.
Best, Juanlu.