File tree 3 files changed +19
-2
lines changed
3 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ ipython_config.py
99
99
# This is especially recommended for binary packages to ensure reproducibility, and is more
100
100
# commonly ignored for libraries.
101
101
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102
- # poetry.lock
102
+ poetry.lock
103
103
104
104
# pdm
105
105
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ async def on_ready(self) -> None:
132
132
emb .description += (f'\n \n :fire: Let\' s beat the high score of { self ._config .high_score } ! '
133
133
f':muscle:\n ' )
134
134
135
- emb .add_field (name = 'NEXT number' , value = f'{ self ._config .current_count + 1 } ' , inline = True )
135
+ emb .add_field (name = 'CURRENT number' , value = f'{ self ._config .current_count } ' , inline = True )
136
136
137
137
if self ._config .current_member_id :
138
138
Original file line number Diff line number Diff line change
1
+ [tool .poetry ]
2
+ name = " counting_bot_indently"
3
+ version = " 1.0.0"
4
+ description = " Counting bot for the Indently Discord server!"
5
+ authors = [" Guanciottaman <113635544+guanciottaman@users.noreply.github.com>" , " Wrichik Basu <56736644+WrichikBasu@users.noreply.github.com>" ]
6
+ license = " MIT"
7
+ readme = " README.md"
8
+
9
+ [tool .poetry .dependencies ]
10
+ python = " ^3.12"
11
+ "discord.py" = " ^2.3.2"
12
+ python-dotenv = " ^1.0.1"
13
+
14
+
15
+ [build-system ]
16
+ requires = [" poetry-core" ]
17
+ build-backend = " poetry.core.masonry.api"
You can’t perform that action at this time.
0 commit comments