Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def _confirm_transaction(self, trade_offer_id: str) -> dict:
confirmation_executor = ConfirmationExecutor(self.steam_guard['identity_secret'], self.steam_guard['steamid'],
self._session)
return confirmation_executor.send_trade_allow_request(trade_offer_id)
def _confirm_sell_listing(self, asset_id: str) -> dict:
con_executor = ConfirmationExecutor(self._steam_guard['identity_secret'], self._steam_guard['steamid'],
self._session)
return con_executor.confirm_sell_listing(asset_id)