Skip to content

Commit 1c0aaa2

Browse files
committed
Quick patch for asyncio import error
1 parent 99852ad commit 1c0aaa2

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.all-contributorsrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,5 @@
8282
"repoType": "github",
8383
"repoHost": "https://github.com",
8484
"skipCi": true,
85-
"badgeTemplate": "# BrainBot [![Version 1.4.0](https://img.shields.io/badge/version-1.4.0-orange)][release] [![MIT License](https://img.shields.io/badge/license-MIT-green)][license] [![All Contributors](https://img.shields.io/badge/all_contributors-<%= contributors.length %>-orange.svg)](#contributors-) [![GitHub stars](https://img.shields.io/github/stars/brainbotdev/brainbot?style=social)][stars]"
85+
"badgeTemplate": "# BrainBot [![Version 1.4.1](https://img.shields.io/badge/version-1.4.1-orange)][release] [![MIT License](https://img.shields.io/badge/license-MIT-green)][license] [![All Contributors](https://img.shields.io/badge/all_contributors-<%= contributors.length %>-orange.svg)](#contributors-) [![GitHub stars](https://img.shields.io/github/stars/brainbotdev/brainbot?style=social)][stars]"
8686
}

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.4.0
2+
current_version = 1.4.1
33

44
[bumpversion:file:.all-contributorsrc]
55

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
2-
# BrainBot [![Version 1.4.0](https://img.shields.io/badge/version-1.4.0-orange)][release] [![MIT License](https://img.shields.io/badge/license-MIT-green)][license] [![All Contributors](https://img.shields.io/badge/all_contributors-7-orange.svg)](#contributors-) [![GitHub stars](https://img.shields.io/github/stars/brainbotdev/brainbot?style=social)][stars]
2+
# BrainBot [![Version 1.4.1](https://img.shields.io/badge/version-1.4.1-orange)][release] [![MIT License](https://img.shields.io/badge/license-MIT-green)][license] [![All Contributors](https://img.shields.io/badge/all_contributors-7-orange.svg)](#contributors-) [![GitHub stars](https://img.shields.io/github/stars/brainbotdev/brainbot?style=social)][stars]
33
<!-- ALL-CONTRIBUTORS-BADGE:END -->
44

55
**A simple and fun Ryver bot to liven up the conversation**
@@ -30,7 +30,7 @@ $ python main.py
3030
**Take a look at [the BrainBot wiki][wiki] to learn how to use the bot once it's up and running.**
3131

3232
[license]: https://github.com/brainbotdev/brainbot/blob/master/LICENSE
33-
[release]: https://github.com/brainbotdev/brainbot/releases/tag/v1.4.0
33+
[release]: https://github.com/brainbotdev/brainbot/releases/tag/v1.4.1
3434
[stars]: https://github.com/brainbotdev/brainbot/stargazers
3535
[wiki]: https://github.com/brainbotdev/brainbot/wiki
3636

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
send_message,
2929
)
3030

31-
__version__ = "1.4.0"
31+
__version__ = "1.4.1"
3232

3333
load_dotenv(
3434
dotenv_path=bot_dir / ".env"

utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from asyncio.exceptions import TimeoutError
1+
from asyncio import TimeoutError
22
from os import getenv
33
from pathlib import Path
44
from random import sample

0 commit comments

Comments
 (0)