Skip to content

Commit e2a6a91

Browse files
committed
Class change
1 parent f6f6bdc commit e2a6a91

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

pygraph/algorithms/filters/find.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"""
2828

2929

30-
class find(object):
30+
class find:
3131
"""
3232
Search filter for finding a specific node.
3333
"""

pygraph/algorithms/filters/null.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"""
2828

2929

30-
class null(object):
30+
class null:
3131
"""
3232
Null search filter.
3333
"""

pygraph/algorithms/filters/radius.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"""
2828

2929

30-
class radius(object):
30+
class radius:
3131
"""
3232
Radial search filter.
3333

pygraph/algorithms/heuristics/chow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
from pygraph.algorithms.minmax import shortest_path
3232

3333

34-
class chow(object):
34+
class chow:
3535
"""
3636
An implementation of the graph searching heuristic proposed by Edmond Chow.
3737

pygraph/algorithms/heuristics/euclidean.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# Imports
3131

3232

33-
class euclidean(object):
33+
class euclidean:
3434
"""
3535
A* heuristic for Euclidean graphs.
3636

pygraph/mixins/basegraph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# OTHER DEALINGS IN THE SOFTWARE.
2424

2525

26-
class basegraph(object):
26+
class basegraph:
2727
"""
2828
An abstract class intended as a common ancestor to all graph classes. This allows the user
2929
to test isinstance(X, basegraph) to determine if the object is one of any of the python-graph

pygraph/mixins/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# OTHER DEALINGS IN THE SOFTWARE.
2424

2525

26-
class common(object):
26+
class common:
2727
"""
2828
Standard methods common to all graph classes.
2929

pygraph/mixins/labeling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# OTHER DEALINGS IN THE SOFTWARE.
2424

2525

26-
class labeling(object):
26+
class labeling:
2727
"""
2828
Generic labeling support for graphs
2929

0 commit comments

Comments
 (0)