Skip to content

Commit f02871b

Browse files
DimitriPapadopoulosFrancescAlted
authored andcommitted
Discard explicit object inheritance.
In Python 3, `object` inheritance is explicit. https://docs.python.org/3/tutorial/classes.html?highlight=inheritance#inheritance Suggested by pyupgrade.
1 parent 486d7c6 commit f02871b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

blosc2/info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def info_html_report(items: list) -> str:
5757
return report
5858

5959

60-
class InfoReporter(object):
60+
class InfoReporter:
6161
def __init__(self, obj):
6262
self.obj = obj
6363

0 commit comments

Comments
 (0)