From 0d28be074d95bef7a0b1c3c0435e605d55a08525 Mon Sep 17 00:00:00 2001 From: Aymeric Wibo Date: Sat, 27 Jul 2024 00:04:58 +0200 Subject: [PATCH] ep13: Reformat build.py --- episode-13/build.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/episode-13/build.py b/episode-13/build.py index 59860f0..0610fb3 100644 --- a/episode-13/build.py +++ b/episode-13/build.py @@ -4,9 +4,10 @@ Cython.Compiler.Options.cimport_from_pyx = True # needed? + class BuildExt(build_ext): def build_extension(self, ext): - self.inplace = True # Important or the LSP won't have access to the compiled files. + self.inplace = True # Important or the LSP won't have access to the compiled files. super().build_extension(ext)