Skip to content
Snippets Groups Projects
ToString.py 158 B
from common.tasks.Runnable import Runnable


class ToString(Runnable):
	def run(self, parameters: dict) -> dict:
		return {"text": str(parameters['number'])}