Conditions | 1 |
Total Lines | 8 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Tests | 1 |
CRAP Score | 1.125 |
Changes | 0 |
1 | #!/usr/bin/python |
||
21 | 1 | def search(self, market_name, no_delay=False) -> APIResponse: |
|
22 | """Implementation of the search function |
||
23 | |||
24 | :type market_name: str |
||
25 | :type no_delay: bool |
||
26 | :return: |
||
27 | """ |
||
28 | return SearchResponseParser.parse(self.sales_interface.get_inventory_on_sale(market_hash_name=market_name)) |
||
29 | |||
51 |