Skip to content

Commit 1c193a1

Browse files
committed
Remove unnecessary object inheritance.
1 parent be68140 commit 1c193a1

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

decasu/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ def _default_dec_corner_fields():
3535

3636

3737
@dataclass
38-
class Configuration(object):
38+
class Configuration:
3939
"""
40-
Decasu configuration object.
40+
Decasu configuration class.
4141
"""
4242
# Mandatory fields
4343
outbase: str

decasu/healpix_consolidator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import healsparse
33

44

5-
class HealpixConsolidator(object):
5+
class HealpixConsolidator:
66
"""
77
Consolidate several maps into one.
88

decasu/multi_healpix_mapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from . import decasu_globals
1515

1616

17-
class MultiHealpixMapper(object):
17+
class MultiHealpixMapper:
1818
"""
1919
Map a combination of bands/pixels
2020

decasu/multi_tile_mapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from . import decasu_globals
1414

1515

16-
class MultiTileMapper(object):
16+
class MultiTileMapper:
1717
"""
1818
Map a combination of tiles for a single band.
1919

decasu/region_mapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
os.environ['OMP_NUM_THREADS'] = '1'
2222

2323

24-
class RegionMapper(object):
24+
class RegionMapper:
2525
"""
2626
Map a single region (healpix pixel or tile)
2727

decasu/simple_healpix_mapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import time
77

88

9-
class SimpleHealpixMapper(object):
9+
class SimpleHealpixMapper:
1010
"""
1111
Do a simple map
1212

decasu/wcs_table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from . import decasu_globals
1111

1212

13-
class WcsTableBuilder(object):
13+
class WcsTableBuilder:
1414
"""
1515
Build a WCS table and get intersecting pixels
1616

0 commit comments

Comments
 (0)