Skip to content

Commit 19bc376

Browse files
authored
Merge pull request #8 from adammhaile/master
Fix missing BytesIO import
2 parents 13aab86 + 7ab566a commit 19bc376

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

duetwebapi/api/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from typing import Dict, List, Union
2-
from io import StringIO, TextIOWrapper
2+
from io import StringIO, TextIOWrapper, BytesIO
33
import requests
44
import os
55
import logging

0 commit comments

Comments
 (0)