Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MaticConradi committed Jul 6, 2022
1 parent 1355979 commit 919008a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion app/components/iexc.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ def _request_forex(cls, request, ticker):

price = rawData[0]["rate"]
if price is None: return [{}, ""]
price = 1 / price

payload = {
"quotePrice": "{:,.5f} {}".format(price, ticker.get("quote")),
Expand Down
2 changes: 1 addition & 1 deletion build/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ WORKDIR /usr/src/quote-server
COPY ./build/requirements.txt ./
RUN pip install -r ./requirements.txt

RUN git clone https://github.com/alphabotsystem/dependencies.git && cd ./dependencies && git checkout v1.4.10
RUN git clone https://github.com/alphabotsystem/dependencies.git && cd ./dependencies && git checkout v1.4.11
RUN pip install ./dependencies/py/parser
RUN rm -r ./dependencies

Expand Down

0 comments on commit 919008a

Please sign in to comment.