From 20e0b28ec3c8e9e0a63759116a32438c18941a59 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sun, 27 Sep 2020 16:58:35 +0200 Subject: Added log checking --- src/test/philo.py | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 src/test/philo.py (limited to 'src/test/philo.py') diff --git a/src/test/philo.py b/src/test/philo.py deleted file mode 100644 index c103bec..0000000 --- a/src/test/philo.py +++ /dev/null @@ -1,23 +0,0 @@ -# ############################################################################ # -# # -# ::: :::::::: # -# philo.py :+: :+: :+: # -# +:+ +:+ +:+ # -# By: charles +#+ +:+ +#+ # -# +#+#+#+#+#+ +#+ # -# Created: 2020/09/27 12:54:12 by charles #+# #+# # -# Updated: 2020/09/27 12:59:50 by charles ### ########.fr # -# # -# ############################################################################ # - -class Philo: - def __init__(id_: int): - self.id = id_ - self.last_event = None - self.last_eat_date = None - - def add_log(self, match): - pass - - def check(self): - return True -- cgit