mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
refactor: remove redundand parenthesis when return tuple
Signed-off-by: Leonidas Spyropoulos <artafinde@archlinux.org>
This commit is contained in:
parent
d793193fdf
commit
7e06823e58
11 changed files with 34 additions and 34 deletions
|
@ -52,7 +52,7 @@ def parse_dep(depstring):
|
|||
depname = re.sub(r"(<|=|>).*", "", dep)
|
||||
depcond = dep[len(depname) :]
|
||||
|
||||
return (depname, desc, depcond)
|
||||
return depname, desc, depcond
|
||||
|
||||
|
||||
def create_pkgbase(conn, pkgbase, user):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue