diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/wikiget/file.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wikiget/file.py b/src/wikiget/file.py index e2599c5..38d41c3 100644 --- a/src/wikiget/file.py +++ b/src/wikiget/file.py @@ -15,7 +15,10 @@ # You should have received a copy of the GNU General Public License # along with Wikiget. If not, see <https://www.gnu.org/licenses/>. -from mwclient.image import Image +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from mwclient.image import Image from wikiget import DEFAULT_SITE |
