Skip to content

Commit

Permalink
lint ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Lord-Kamina committed Jun 12, 2024
1 parent 443866d commit 5c2fe5e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ deluge/ui/web/css/ext-*.css
deluge/ui/web/js/extjs/ext-*.js
deluge/ui/web/docs/
deluge/ui/web/themes/images/
deluge/packaging/osx/
packaging/osx/
*.py*
*.html
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ packages = gi
[flake8]
max-line-length = 120
builtins = _,_n,__request__
extend-exclude = dist,build,deluge/packaging/osx
extend-exclude = dist,build,packaging/osx
extend-ignore =
# flake8-builtins: A003 class attribute is shadowing a python builtin
A003,
Expand Down
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,9 +287,7 @@ def run(self):
f'cd {path} && {sys.executable} -m pip install --prefix={self.install_dir} --editable .'
)
elif self.develop:
os.system(
f'cd {path} && {sys.executable} -m pip install .'
)
os.system(f'cd {path} && {sys.executable} -m pip install .')
else:
builder = ProjectBuilder(
source_dir=path, python_executable=sys.executable
Expand Down Expand Up @@ -361,7 +359,7 @@ def run(self):
print('Warning: libtorrent (libtorrent-rasterbar) not found: %s' % ex)


class Clean():
class Clean:
sub_commands = [
('clean_plugins', None),
('clean_trans', None),
Expand Down

0 comments on commit 5c2fe5e

Please sign in to comment.