Skip to content

Commit 3573ae6

Browse files
committed
fix: fixed missing import
1 parent 171c19e commit 3573ae6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

h51/resources.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11

22
from datetime import datetime
33
import json
4+
import time
45

56
from . import pagination
67

@@ -150,7 +151,7 @@ def persist(self):
150151
self._document.update(r)
151152

152153
@classmethod
153-
def all(self, client, secure=None, type=None, q=None, rate_buffer=0):
154+
def all(cls, client, secure=None, type=None, q=None, rate_buffer=0):
154155
"""
155156
Get all assets.
156157

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# Versions should comply with PEP440. For a discussion on single-sourcing
2222
# the version across setup.py and the project code, see
2323
# https://packaging.python.org/en/latest/single_source_version.html
24-
version='0.0.5',
24+
version='0.0.6',
2525
description=\
2626
'The H51 Python library provides a pythonic interface to the H51 API.',
2727
long_description=long_description,

0 commit comments

Comments
 (0)