2021-03-19 10:55:52 +11:00
|
|
|
class Usecase:
|
2021-03-27 19:14:32 +11:00
|
|
|
def __init__(self, file, **settings):
|
2021-03-19 10:55:52 +11:00
|
|
|
self.file = file
|
|
|
|
|
self.settings = {"connection": None}
|
|
|
|
|
for key, value in settings.items():
|
|
|
|
|
self.settings[key] = value
|
|
|
|
|
|
|
|
|
|
def execute(self):
|
|
|
|
|
if not self.settings["connection"].AppliedCondition:
|
|
|
|
|
return
|
2021-03-31 18:58:02 +02:00
|
|
|
if len(self.file.get_inverse(self.settings["connection"].AppliedCondition)) == 1:
|
2021-03-19 23:38:28 +01:00
|
|
|
self.file.remove(self.settings["connection"].AppliedCondition)
|
2021-03-31 18:58:02 +02:00
|
|
|
self.settings["connection"].AppliedCondition = None
|