Skip to content

Commit

Permalink
isort
Browse files Browse the repository at this point in the history
  • Loading branch information
Sving1024 committed Oct 31, 2024
1 parent ba187d1 commit 9f0d15e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
9 changes: 6 additions & 3 deletions src/pdf_luogu/cli.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
import pypandoc
from pathlib import Path
import asyncio
import shutil
from pathlib import Path

import pypandoc

try:
import luogu, setting
import luogu
import setting
except ModuleNotFoundError:
from pdf_luogu import luogu, setting

Expand Down
1 change: 1 addition & 0 deletions src/pdf_luogu/luogu.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import json

import httpx

try:
Expand Down
3 changes: 2 additions & 1 deletion tests/test_luogu.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import sys

import pytest
from pdf_luogu import luogu

from pdf_luogu import luogu

0 comments on commit 9f0d15e

Please sign in to comment.