diff options
author | Madhur Garg <madhurgarg96@gmail.com> | 2019-07-08 13:36:13 +0530 |
---|---|---|
committer | Madhur Garg <madhurgarg96@gmail.com> | 2019-08-22 00:54:25 +0530 |
commit | 3e491589a8f9bcbb877235b34e9401c3bdcfdde7 (patch) | |
tree | 8038863867feb8a8740873c780b7a3aba0b96824 | |
parent | a0d8e1ceeefcfd0596e7034833cfcdeee63f1f01 (diff) | |
download | poezio-3e491589a8f9bcbb877235b34e9401c3bdcfdde7.tar.gz poezio-3e491589a8f9bcbb877235b34e9401c3bdcfdde7.tar.bz2 poezio-3e491589a8f9bcbb877235b34e9401c3bdcfdde7.tar.xz poezio-3e491589a8f9bcbb877235b34e9401c3bdcfdde7.zip |
Changed type of history to 'boolean
-rw-r--r-- | poezio/windows/text_win.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/windows/text_win.py b/poezio/windows/text_win.py index 27795261..44a70953 100644 --- a/poezio/windows/text_win.py +++ b/poezio/windows/text_win.py @@ -312,7 +312,7 @@ class TextWin(BaseTextWin): # TODO: figure out the type of history. def build_new_message(self, message: Message, - history=None, + history: bool = False, clean: bool = True, highlight: bool = False, timestamp: bool = False, |