Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyTempel committed Mar 31, 2020
1 parent 403ef0c commit ee76b62
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion corona/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
__author__ = "NANI"

from .client import Client
from .http import APIError, NotFound
from .objects import *
from .router import Router
from .http import APIError, NotFound
2 changes: 0 additions & 2 deletions corona/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,5 +117,3 @@ async def timeline_by_province(self, country: str, province: str) -> Historic:
"""
data = await self.http.request(self.router.historical_by_provice(country, province))
return Historic(**data)


1 change: 0 additions & 1 deletion corona/objects.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import abc
from datetime import datetime, timezone


ASCII_LOWER = "abcdefghijklmnopqrstuvwxyz0123456789"
OFFSET = 127397

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand Down

0 comments on commit ee76b62

Please sign in to comment.