Completed
Pull Request — master (#544)
by
unknown
05:43
created

ListVehiclesAction   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
wmc 1
1
from lib.actions import BaseAction
2
3
__all__ = [
4
    'ListVehiclesAction'
5
]
6
7
8
class ListVehiclesAction(BaseAction):
9
    def run(self):
10
        return self.formatter.formatter(
11
            self.connection.vehicles())
12