Skip to content

Commit

Permalink
Quick patch for asyncio import error
Browse files Browse the repository at this point in the history
  • Loading branch information
bsoyka committed Jan 18, 2021
1 parent 99852ad commit 1c0aaa2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,5 @@
"repoType": "github",
"repoHost": "https://github.com",
"skipCi": true,
"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]"
"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]"
}
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.4.0
current_version = 1.4.1

[bumpversion:file:.all-contributorsrc]

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
# 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]
# 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]
<!-- ALL-CONTRIBUTORS-BADGE:END -->

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

[license]: https://github.com/brainbotdev/brainbot/blob/master/LICENSE
[release]: https://github.com/brainbotdev/brainbot/releases/tag/v1.4.0
[release]: https://github.com/brainbotdev/brainbot/releases/tag/v1.4.1
[stars]: https://github.com/brainbotdev/brainbot/stargazers
[wiki]: https://github.com/brainbotdev/brainbot/wiki

Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
send_message,
)

__version__ = "1.4.0"
__version__ = "1.4.1"

load_dotenv(
dotenv_path=bot_dir / ".env"
Expand Down
2 changes: 1 addition & 1 deletion utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from asyncio.exceptions import TimeoutError
from asyncio import TimeoutError
from os import getenv
from pathlib import Path
from random import sample
Expand Down

0 comments on commit 1c0aaa2

Please sign in to comment.