VaultDeleteAction   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 2 1
1
from lib import action
2
3
4
class VaultDeleteAction(action.VaultBaseAction):
5
    def run(self, path):
6
        return self.vault.delete(path)
7