Completed
Pull Request — master (#436)
by Anthony
02:00
created

ListVehiclesAction.run()   A

Complexity

Conditions 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 3
rs 10
cc 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