Skip to content

Commit bd1a896

Browse files
MNT: object inheritance is implicit
1 parent a1eae4d commit bd1a896

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

niworkflows/interfaces/freesurfer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def _run_interface(self, runtime):
217217
return runtime
218218

219219

220-
class TruncateLTA(object):
220+
class TruncateLTA:
221221
"""
222222
Truncate long filenames in LTA files.
223223

niworkflows/reports/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def __gt__(self, other):
8484
return False
8585

8686

87-
class Element(object):
87+
class Element:
8888
"""Just a basic component of a report"""
8989

9090
def __init__(self, name, title=None):

0 commit comments

Comments
 (0)