9 lines
150 B
Python
9 lines
150 B
Python
from common import models
|
|
|
|
|
|
class WriteFunctions:
|
|
|
|
@staticmethod
|
|
def create_season(season: 'models.Season'):
|
|
return 'Season created.'
|