Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion oandapy/oandapy.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from __future__ import absolute_import
import json
import requests
from .exceptions import BadEnvironment, OandaError
from oandapy.exceptions import BadEnvironment, OandaError

""" OANDA API wrapper for OANDA's REST API """

Expand Down
3 changes: 2 additions & 1 deletion oandapy/stream/stream.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
from __future__ import absolute_import
import warnings

import json
import requests
from ..exceptions import BadEnvironment
from oandapy.exceptions import BadEnvironment
from abc import ABCMeta, abstractmethod

""" OANDA API wrapper for OANDA's REST API """
Expand Down