7 lines
93 B
Python
7 lines
93 B
Python
from .base import Base
|
|
|
|
class Sector(Base):
|
|
@classmethod
|
|
def ext(self):
|
|
return 'sct'
|