File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
- coverage == 7.6.8
1
+ coverage == 7.6.10
2
2
flake8 == 7.1.1
3
- mypy == 1.13.0
3
+ mypy == 1.14.1
4
4
pygraphviz == 1.14
5
5
pyinstaller == 6.11.1
6
- pylint == 3.3.1
6
+ pylint == 3.3.3
7
7
pyqt6 == 6.7.1
Original file line number Diff line number Diff line change @@ -140,8 +140,8 @@ def test_happy(self) -> None:
140
140
self .assertFalse (os .path .exists (config ["output" ]))
141
141
ged2dot .convert (config )
142
142
self .assertTrue (os .path .exists (config ["output" ]))
143
- with open (config ["output" ], "r" , encoding = "utf-8" ) as stream :
144
- graph = pygraphviz .AGraph (string = stream .read ())
143
+ with open (config ["output" ], "r" , encoding = "utf-8" ) as dot_stream :
144
+ graph = pygraphviz .AGraph (string = dot_stream .read ())
145
145
person = graph .get_node ("P48" )
146
146
stream = io .StringIO (person .attr .get ("label" ))
147
147
tree = ET .parse (stream )
@@ -547,8 +547,8 @@ def test_fam_no_marr(self) -> None:
547
547
548
548
# Then make sure that explicit width and height is specified for the table around the image,
549
549
# required by the PNG output:
550
- with open (config ["output" ], "r" , encoding = "utf-8" ) as stream :
551
- graph = pygraphviz .AGraph (string = stream .read ())
550
+ with open (config ["output" ], "r" , encoding = "utf-8" ) as dot_stream :
551
+ graph = pygraphviz .AGraph (string = dot_stream .read ())
552
552
family = graph .get_node ("F1" )
553
553
stream = io .StringIO (family .attr .get ("label" ))
554
554
tree = ET .parse (stream )
You can’t perform that action at this time.
0 commit comments