From f099fd141df67f5b1d6886c6810d2892b97a0664 Mon Sep 17 00:00:00 2001 From: 5Ub-Z3r0 <1673590+5Ub-Z3r0@users.noreply.github.com> Date: Thu, 17 Jul 2025 17:37:58 +0200 Subject: [PATCH] Remove the hardcoded URL added in [df672d2](https://github.com/csingley/ibflex/commit/df672d2b9048c524119149940c642ecee3593fa5) Probably an oopsie leftover from testing. --- ibflex/client.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ibflex/client.py b/ibflex/client.py index f203e8b..041f53a 100755 --- a/ibflex/client.py +++ b/ibflex/client.py @@ -136,8 +136,6 @@ def request_statement( """First part of the 2-step download process. """ url = url or REQUEST_URL - ### AKE FIX - url = 'https://ndcdyn.interactivebrokers.com/portal.flexweb/api/v1/flexQuery' response = submit_request(url, token, query=query_id) stmt_access = parse_stmt_response(response) if isinstance(stmt_access, StatementError):