Skip to content

Commit a833552

Browse files
committed
Replace deprecated attrdict with local version
A boilerplate implementation of the access by member for keys helps solving the issue of unmaintained AttrDict. Its a reasonable workaround for now.
1 parent 83bcabc commit a833552

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
# Fields marked as "Optional" may be commented out.
2323

2424
requires = ["svgwrite",
25-
"attrdict",
2625
"six" # 2 and 3 compatibility
2726
]
2827
setup(

test/diff.py

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
import xmldiff
55
import xmldiff.main
6-
from attrdict import AttrDict
76
from lxml import etree
87

98
from PIL import Image, ImageChops

wavedrom/attrdict.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
class AttrDict(dict):
2+
def __init__(self, *args, **kwargs):
3+
super(AttrDict, self).__init__(*args, **kwargs)
4+
self.__dict__ = self

wavedrom/base.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
# SPDX-License-Identifier: MIT
33

44
import svgwrite
5-
from attrdict import AttrDict
6-
5+
from .attrdict import AttrDict
76

87
class SVGBase(object):
98
container = AttrDict({

wavedrom/css.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# Translated to Python from original file:
55
# https://github.com/drom/wavedrom/blob/master/src/WaveDrom.js
66

7-
import attrdict
8-
css = attrdict.AttrDict({})
7+
from .attrdict import AttrDict
8+
css = AttrDict({})
99
css.default = """
1010
text{font-size:11pt;
1111
font-style:normal;

wavedrom/tspan.py

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import sys
55

66
import svgwrite
7-
from attrdict import AttrDict
87
from six import string_types
98
from svgwrite.base import BaseElement
109
from svgwrite.etree import etree

wavedrom/waveform.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import re
1111
from itertools import chain
1212
import svgwrite
13-
from attrdict import AttrDict
13+
from .attrdict import AttrDict
1414
from collections import deque
1515

1616
from six import string_types

0 commit comments

Comments
 (0)