Skip to content

Commit

Permalink
garden
Browse files Browse the repository at this point in the history
  • Loading branch information
aodag committed Jun 12, 2021
1 parent 476081b commit 6af30dc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion kenallclient/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ def main() -> None:
import dataclasses
import os
from pprint import pprint
from .client import KenAllClient

from kenallclient.client import KenAllClient

parser = argparse.ArgumentParser()
parser.add_argument("--apikey", default=os.environ.get("KENALL_APIKEY"))
Expand Down
2 changes: 1 addition & 1 deletion kenallclient/__main__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from . import main
from kenallclient import main

main()
4 changes: 2 additions & 2 deletions kenallclient/client.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import urllib.request
import urllib.parse
import json
import urllib.parse
import urllib.request
from typing import Dict

from kenallclient.model import KenAllResult
Expand Down

0 comments on commit 6af30dc

Please sign in to comment.