Skip to content

Commit

Permalink
make flake8 happy
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed Oct 2, 2023
1 parent 031e7d0 commit 2d667f9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ pre-release: ## All the necessary steps before making a release.

release: ## Creates a release (tar.gz + upload + git tag release).
${MAKE} pre-release
$(PYTHON) -m twine upload dist/* # upload tar on PYPI
$(PYTHON) -m twine upload --verbose dist/* # upload tar on PYPI
${MAKE} git-tag-release

generate-manifest: ## Generates MANIFEST.in file.
Expand Down
2 changes: 1 addition & 1 deletion pyftpdlib/ioloop.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ def instance(cls):
if cls._instance is None:
cls._instance = cls()
return cls._instance

@classmethod
def factory(cls):
"""Constructs a new IOLoop instance."""
Expand Down
1 change: 0 additions & 1 deletion pyftpdlib/servers.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
import traceback

from .ioloop import Acceptor
from .ioloop import IOLoop
from .log import PREFIX
from .log import PREFIX_MPROC
from .log import config_logging
Expand Down
4 changes: 2 additions & 2 deletions scripts/internal/print_announce.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


HERE = os.path.abspath(os.path.dirname(__file__))
HISTORY = os.path.abspath(os.path.join(HERE, '../HISTORY.rst'))
HISTORY = os.path.abspath(os.path.join(HERE, '../../HISTORY.rst'))

PRJ_NAME = 'pyftpdlib'
PRJ_URL_HOME = 'https://github.com/giampaolo/pyftpdlib'
Expand Down Expand Up @@ -50,7 +50,7 @@
--
Giampaolo - http://grodola.blogspot.com
Giampaolo - https://gmpy.dev/
"""


Expand Down

0 comments on commit 2d667f9

Please sign in to comment.