Skip to content

Commit 738002b

Browse files
chore: fixes linting issues
1 parent 4bf47d8 commit 738002b

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

packages/slackBotFunction/app/core/config.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import traceback
99
from dataclasses import dataclass
1010
from functools import lru_cache
11-
from typing import tuple
1211

1312
import boto3
1413
from aws_lambda_powertools import Logger

packages/slackBotFunction/app/slack/slack_events.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import re
88
import time
99
import traceback
10-
from typing import Any, dict
10+
from typing import Any
1111

1212
from botocore.exceptions import ClientError
1313
from slack_sdk import WebClient

packages/slackBotFunction/app/slack/slack_handlers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import json
1111
import traceback
1212
from functools import lru_cache
13-
from typing import Any, dict
13+
from typing import Any
1414

1515
from slack_bolt import Ack, App
1616
from slack_sdk import WebClient

packages/slackBotFunction/app/utils/handler_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import re
77
import time
88
import traceback
9-
from typing import Any, dict, tuple
9+
from typing import Any
1010

1111
import boto3
1212
from botocore.exceptions import ClientError

0 commit comments

Comments
 (0)