Skip to content

Commit a087d20

Browse files
authored
Merge pull request #42 from slack-samples/adjustments
A few adjustments
2 parents d7ce74d + f94837a commit a087d20

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,5 @@ tmp.txt
3535
.DS_Store
3636
logs/
3737
*.db
38-
.pytype/
38+
.pytype/
39+
.idea/

app.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@
66

77
from listeners import register_listeners
88

9+
logging.basicConfig(level=logging.DEBUG)
10+
911
# Initialization
1012
app = App(token=os.environ.get("SLACK_BOT_TOKEN"))
11-
logging.basicConfig(level=logging.DEBUG)
1213

1314
# Register Listeners
1415
register_listeners(app)

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
slack-bolt
22
pytest
33
flake8==7.1.1
4-
black==24.8.0
4+
black

0 commit comments

Comments
 (0)