From 6100010d6873845413aed22744470616992df603 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 5 Oct 2020 14:04:41 +0200 Subject: Readded should be dead test --- src/philo/__init__.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/philo/__init__.py') diff --git a/src/philo/__init__.py b/src/philo/__init__.py index 5915e2b..5d7024a 100644 --- a/src/philo/__init__.py +++ b/src/philo/__init__.py @@ -6,12 +6,12 @@ # By: cacharle +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/10/01 10:50:41 by cacharle #+# #+# # -# Updated: 2020/10/01 11:08:00 by cacharle ### ########.fr # +# Updated: 2020/10/05 13:50:41 by cacharle ### ########.fr # # # # ############################################################################ # -from philo.philo import Philo -from philo.table import Table -from philo.log import Log -from philo.event import Event -import philo.error as error +from philo.philo import Philo # noqa: F401 +from philo.table import Table # noqa: F401 +from philo.log import Log # noqa: F401 +from philo.event import Event # noqa: F401 +import philo.error as error # noqa: F401 -- cgit