From 18976347c36458223dc79204a01f87ac450b36b8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Krup=C4=8D=C3=ADk?= <lukas.krupcik@vsb.cz>
Date: Tue, 17 Jul 2018 12:05:13 +0200
Subject: [PATCH] fix

---
 scripts/combinations.py | 8 --------
 1 file changed, 8 deletions(-)
 delete mode 100644 scripts/combinations.py

diff --git a/scripts/combinations.py b/scripts/combinations.py
deleted file mode 100644
index 8186da1a..00000000
--- a/scripts/combinations.py
+++ /dev/null
@@ -1,8 +0,0 @@
-import itertools
-import re
-l = ['A', 'S', 'U', 'T']
-mask = ''.join(reversed(l))
-for i in range(1,len(l)+1):
-    for comb in itertools.combinations(l, i):
-        reg = "[^%s]" % ''.join(comb)
-        print re.sub(reg,"-", mask)
-- 
GitLab