Refactored to use AbstractSplittedSecret

This commit is contained in:
2022-12-09 13:08:07 +01:00
parent 16040178e5
commit f547b79675
5 changed files with 23 additions and 12 deletions

View File

@@ -0,0 +1,3 @@
class AbstractSplittedSecret:
def __init__(self):
self.encrypted_splitted_password_files_folder = "data/encrypted/splitted_password_files/"

View File

@@ -0,0 +1,7 @@
from .AbstractSplittedSecret import AbstractSplittedSecret
class Cleanup(AbstractSplittedSecret):
def __init__(self):
pass
def deleteAll(self):
pass

View File

@@ -3,7 +3,7 @@
import subprocess
class Cli():
class Cli(object):
def __init__(self):
self.command = ''