Skip to content

Commit

Permalink
twine, tests: fixup lint
Browse files Browse the repository at this point in the history
Signed-off-by: William Woodruff <william@yossarian.net>
  • Loading branch information
woodruffw committed Nov 22, 2023
1 parent ad1c1e9 commit c13f681
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/test_upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
import pytest
import requests

from twine import cli, exceptions
from twine import cli
from twine import exceptions
from twine import package as package_file
from twine.commands import upload

Expand Down
5 changes: 4 additions & 1 deletion twine/commands/upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@
import requests
from rich import print

from twine import commands, exceptions, settings, utils
from twine import commands
from twine import exceptions
from twine import package as package_file
from twine import settings
from twine import utils

logger = logging.getLogger(__name__)

Expand Down

0 comments on commit c13f681

Please sign in to comment.