From 1a21bb4a6975a4717d12f5b242f45b16559e61ba Mon Sep 17 00:00:00 2001 From: Jakub Kulik Date: Thu, 9 Mar 2023 19:11:15 +0100 Subject: [PATCH] Add missing functools import --- xcbgen/xtypes.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xcbgen/xtypes.py b/xcbgen/xtypes.py index d72e6da..8125998 100644 --- a/xcbgen/xtypes.py +++ b/xcbgen/xtypes.py @@ -1,6 +1,8 @@ ''' This module contains the classes which represent XCB data types. ''' +from functools import reduce + from .expr import Field, Expression from .align import Alignment, AlignmentLog from xml.etree.ElementTree import SubElement