Skip to content

Commit

Permalink
enforce PEP8
Browse files Browse the repository at this point in the history
  • Loading branch information
fandreuz committed Dec 30, 2020
1 parent 6f29e68 commit 3732af3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from bisimulation_algorithms.paige_tarjan.graph_entities import (
_Vertex as pta_Vertex,
_QBlock as pta_Block,
_XBlock
_XBlock,
)


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


class _Block(pta_Block):
def __init__(self, vertexes: Iterable[_Vertex], xblock: _XBlock):
super().__init__(vertexes, xblock)
Expand Down

0 comments on commit 3732af3

Please sign in to comment.