Skip to content

Commit

Permalink
bug fix datatype welcome task fixed to int
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaloog committed Dec 5, 2023
1 parent d328981 commit 0a1b38c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## Version 0.3.5
- Bug Fix: Datatype `Welcome Task` Duration: str -> int

## Version 0.3.4
- Bug fix: default separator for `settings.scanner` Pattern setting was space separated not comma separated
- Fix Image for kanban configure to show right Pattern
Expand Down
2 changes: 1 addition & 1 deletion src/kanban_python/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"Status": "Ready",
"Begin_Time": "",
"Complete_Time": "",
"Duration": "0",
"Duration": 0,
"Creation_Date": "",
}
DUMMY_DB = {1: DUMMY_TASK}
Expand Down

0 comments on commit 0a1b38c

Please sign in to comment.