From 169b197614ef05df9666d7b43325f004b8e14942 Mon Sep 17 00:00:00 2001 From: s45167 Date: Thu, 30 Nov 2017 22:55:59 +0100 Subject: [PATCH] =?UTF-8?q?Moje=20rozwi=C4=85zanie?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: s45167 --- labs02/task11.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labs02/task11.py b/labs02/task11.py index 21954b7..37b3c40 100644 --- a/labs02/task11.py +++ b/labs02/task11.py @@ -14,7 +14,7 @@ def common_chars(string1, string2): if (i in sorted(string2)) and i!=" " and i not in cc: cc.append(i) return cc - pass + def tests(f):