From 1f9b4d732b3b355644ecbdb7ba3d245825335351 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Wobst?= Date: Tue, 30 Mar 2004 10:28:37 +0000 Subject: [PATCH] allow for non-keyword arguments in symbol git-svn-id: https://pyx.svn.sourceforge.net/svnroot/pyx/trunk/pyx@1591 069f4177-920e-0410-937b-c2a4a81bcd90 --- pyx/graph/style.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyx/graph/style.py b/pyx/graph/style.py index ede2465b..763b0f95 100644 --- a/pyx/graph/style.py +++ b/pyx/graph/style.py @@ -445,8 +445,8 @@ class symbolline(_style): class symbol(symbolline): - def __init__(self, **kwargs): - symbolline.__init__(self, lineattrs=None, **kwargs) + def __init__(self, *args, **kwargs): + symbolline.__init__(self, lineattrs=None, *args, **kwargs) class line(symbolline): -- 2.11.4.GIT