From b488100ac1607a18cd38a206d1f48ba559f78fdd Mon Sep 17 00:00:00 2001 From: saces Date: Tue, 10 Feb 2026 14:49:15 +0100 Subject: [PATCH] build fix --- smal/src/smal/bot.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/smal/src/smal/bot.py b/smal/src/smal/bot.py index bc44d7d..5fb4d8f 100644 --- a/smal/src/smal/bot.py +++ b/smal/src/smal/bot.py @@ -1,7 +1,6 @@ # -*- coding: utf-8 -*- import logging import sys -from typing import Optional from .app import SMALApp @@ -15,7 +14,7 @@ logger = logging.getLogger(__name__) class SMALBot(SMALApp): """ """ - def __init__(self, sigil: String): + def __init__(self, sigil): super().__init__() self._sigil = sigil