Skip to content

Commit 501adea

Browse files
committed
Lower case and move stuff to subdir for pypi
1 parent 266a690 commit 501adea

17 files changed

Lines changed: 114 additions & 29 deletions

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
*.swo
33
*.pyc
44
config.json
5+
dist
6+
imgur_python.egg-_info
File renamed without changes.

imgur-python/imgur/auth/__init__.py

Whitespace-only changes.
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
#!/usr/bin/env python3
22

3-
from .Base import Base as AuthBase
3+
from .base import base as authbase
44
import time as dt
55

6-
class AccessToken(AuthBase):
6+
class accesstoken(authbase):
7+
78
def __init__(self, access, refresh, expire_time):
89
self.access = access
910
self.refresh = refresh
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22

3-
class Anonymous:
3+
class anonymous:
44
def __init__(self, client_id):
55
self.client_id = client_id
66

0 commit comments

Comments
 (0)