From b1e162ebb463a1e327a285699c5a0a09ab3e61f2 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Fri, 14 Apr 2023 01:22:22 -0400 Subject: [PATCH] Fix ._util import in questrade backend --- piker/brokers/questrade.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/piker/brokers/questrade.py b/piker/brokers/questrade.py index b7042bdf..1d447b23 100644 --- a/piker/brokers/questrade.py +++ b/piker/brokers/questrade.py @@ -1,5 +1,5 @@ # piker: trading gear for hackers -# Copyright (C) 2018-present Tyler Goodlet (in stewardship of piker0) +# Copyright (C) 2018-present Tyler Goodlet (in stewardship of pikers) # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by @@ -46,7 +46,7 @@ from ._util import resproc, BrokerError, SymbolNotFound from ..log import ( colorize_json, ) -from .util import ( +from ._util import ( log, get_console_log, )