Skip to content

Commit 3732af3

Browse files
committed
enforce PEP8
1 parent 6f29e68 commit 3732af3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bisimulation_algorithms/dovier_piazza_policriti/graph_entities.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from bisimulation_algorithms.paige_tarjan.graph_entities import (
44
_Vertex as pta_Vertex,
55
_QBlock as pta_Block,
6-
_XBlock
6+
_XBlock,
77
)
88

99

@@ -26,6 +26,7 @@ def scale_label(self, scaled_label: int):
2626
def back_to_original_label(self):
2727
self.label = self.original_label
2828

29+
2930
class _Block(pta_Block):
3031
def __init__(self, vertexes: Iterable[_Vertex], xblock: _XBlock):
3132
super().__init__(vertexes, xblock)

0 commit comments

Comments
 (0)