From 4abeb0683159cdc4482a7f491340bfedf3fe2339 Mon Sep 17 00:00:00 2001 From: eine Date: Sat, 15 Aug 2020 18:07:05 +0200 Subject: python: execute 'black' --- python/libghdl/thin/errorout_memory.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'python/libghdl/thin/errorout_memory.py') diff --git a/python/libghdl/thin/errorout_memory.py b/python/libghdl/thin/errorout_memory.py index 8027795df..f236f1075 100644 --- a/python/libghdl/thin/errorout_memory.py +++ b/python/libghdl/thin/errorout_memory.py @@ -1,13 +1,16 @@ from libghdl import libghdl from ctypes import c_int8, c_int32, c_char_p, Structure + class Error_Message(Structure): - _fields_ = [("id", c_int8), - ("group", c_int8), - ("file", c_int32), - ("line", c_int32), - ("offset", c_int32), - ("length", c_int32)] + _fields_ = [ + ("id", c_int8), + ("group", c_int8), + ("file", c_int32), + ("line", c_int32), + ("offset", c_int32), + ("length", c_int32), + ] # Values for group: -- cgit v1.2.3