Skip to content

Commit b1abaad

Browse files
Fix/mattermost (#37)
* Fix typo in mattermost arguments causing error when its not set up * Update pipeline with mattermost logo * Bump up the version
1 parent 85b6876 commit b1abaad

5 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.2.1
4+
5+
- Fix the error on setting up the Mattermost posting
6+
37
## 1.2.0
48

59
### Changed

images/paperbee_pipeline.png

536 KB
Loading

images/paperbee_pipeline.svg

Lines changed: 1 addition & 1 deletion
Loading

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "PaperBee"
3-
version = "1.2.0"
3+
version = "1.2.1"
44
description = ""
55
authors = ["Daniele Lucarelli <daniele.lucarelli@tum.de>", "Vladimir Shitov <vladimir.shitov@helmholtz-munich.de>"]
66
repository = "https://github.com/theislab/paperbee"

src/PaperBee/daily_posting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ async def daily_papers_search(
4848
if slack_args == {}:
4949
slack_args = {"bot_token": "", "channel_id": "", "is_posting_on": False}
5050
if mattermost_args == {}:
51-
mattermost_args = {"bot_token": "", "channel_id": "", "is_posting_on": False}
51+
mattermost_args = {"url": "", "token": "", "team": "", "channel": "", "is_posting_on": False}
5252

5353
llm_filtering = config.get("LLM_FILTERING", False)
5454
if llm_filtering:

0 commit comments

Comments
 (0)