From ef7222d00746d4e89ea9448da4ccf242e49fd544 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 19 Aug 2020 22:47:01 +0530 Subject: [PATCH] Modernize future import --- src/pyj/book_list/theme.pyj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyj/book_list/theme.pyj b/src/pyj/book_list/theme.pyj index 003dc18f3c..2ac24626a0 100644 --- a/src/pyj/book_list/theme.pyj +++ b/src/pyj/book_list/theme.pyj @@ -1,6 +1,6 @@ # vim:fileencoding=utf-8 # License: GPL v3 Copyright: 2015, Kovid Goyal -from __python__ import hash_literals +from __python__ import hash_literals, bound_methods DARK = '#39322B' LIGHT = '#F6F3E9'