Conditions | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 2 |
1 | #!/usr/bin/python |
||
28 | def search_no_delay(self, market_name): |
||
29 | """Implementation of the search no delay function |
||
30 | |||
31 | :param market_name: |
||
32 | :return: |
||
33 | """ |
||
34 | # ToDo: unify the units(BitSkins float like 5.50, OPSkins int like 550) |
||
35 | return self.sales_interface.get_inventory_on_sale(market_hash_name=market_name) |
||
36 |