diff options
| author | Josh <[email protected]> | 2021-05-13 10:24:28 +1000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-05-12 20:24:28 -0400 |
| commit | 5fa64e83e0ba8f3e49047d6914b4ecb24fb20ffc (patch) | |
| tree | 7156b53549599e0b9660e4e2d6262028bd9a241e /discord/member.py | |
| parent | Add Template.url (diff) | |
| download | discord.py-5fa64e83e0ba8f3e49047d6914b4ecb24fb20ffc.tar.xz discord.py-5fa64e83e0ba8f3e49047d6914b4ecb24fb20ffc.zip | |
Fix issues with imports causing NameErrors
Diffstat (limited to 'discord/member.py')
| -rw-r--r-- | discord/member.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/discord/member.py b/discord/member.py index 008de365..fcb2eef0 100644 --- a/discord/member.py +++ b/discord/member.py @@ -22,6 +22,8 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ +from __future__ import annotations + import datetime import inspect import itertools |