Fix ._util import in questrade backend

rekt_pps
Tyler Goodlet 2023-04-14 01:22:22 -04:00
parent b810de3089
commit b1e162ebb4
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
# piker: trading gear for hackers # 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 # 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 # 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 ( from ..log import (
colorize_json, colorize_json,
) )
from .util import ( from ._util import (
log, log,
get_console_log, get_console_log,
) )