From 0a86e7e065ee230833f88e8dafcbc8691dd8db55 Mon Sep 17 00:00:00 2001 From: Colin Goutte Date: Fri, 26 Apr 2024 16:30:24 +0200 Subject: [PATCH] Correction colision de nom module 'code' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Il y a déja un module nommé code dans la bibliotheque standard --- python_tableur/test_demo.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python_tableur/test_demo.py b/python_tableur/test_demo.py index 19c68b6..7dec338 100644 --- a/python_tableur/test_demo.py +++ b/python_tableur/test_demo.py @@ -1,6 +1,7 @@ from unittest import TestCase -from code import database +import excel2py +from excel2py import database class FetchFromSpradSheetCast(TestCase):