Skip to content

Commit

Permalink
Fix imports.. again :)
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeSG committed May 23, 2020
1 parent dd6085a commit 6878cac
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions pyairctrl/airctrl.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import argparse
import sys

from pyairctrl.cli.coap_air_cli import CoAPAirCli
from pyairctrl.cli.http_air_cli import HTTPAirCli
from pyairctrl.cli.v_107_cli import Version107Cli
from .cli.coap_air_cli import CoAPAirCli
from .cli.http_air_cli import HTTPAirCli
from .cli.v_107_cli import Version107Cli


def main():
Expand Down
2 changes: 1 addition & 1 deletion pyairctrl/cli/coap_air_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# pylint: disable=invalid-name, missing-class-docstring, missing-function-docstring

from pyairctrl.client.coap_air_client import CoAPAirClient
from ..client.coap_air_client import CoAPAirClient


class CoAPAirCli:
Expand Down
2 changes: 1 addition & 1 deletion pyairctrl/cli/http_air_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import pprint
import urllib.request

from pyairctrl.client.http_air_client import HTTPAirClient
from ..client.http_air_client import HTTPAirClient


class HTTPAirCli:
Expand Down
2 changes: 1 addition & 1 deletion pyairctrl/cli/v_107_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import pprint

from pyairctrl.client.v_107_client import Version107Client
from ..client.v_107_client import Version107Client

from .status_transformer import STATUS_TRANSFORMER

Expand Down
2 changes: 1 addition & 1 deletion pyairctrl/cloudctrl.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import urllib.request
import urllib.parse

from pyairctrl.client.http_air_client import HTTPAirClient
from ..client.http_air_client import HTTPAirClient

def parse_attr(str, key):
p = re.compile('%s=\"(.+?)\"' % key)
Expand Down

0 comments on commit 6878cac

Please sign in to comment.