Skip to content

Commit 0e1155c

Browse files
authored
fix extraneous parentheses
1 parent 85cd0e8 commit 0e1155c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

homu/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def result(repo_label, pull):
117117

118118
@get('/queue/<repo_label:path>')
119119
def queue(repo_label):
120-
if (repo_label not in g.cfg['repo']) and (repo_label != 'all'):
120+
if repo_label not in g.cfg['repo'] and repo_label != 'all':
121121
abort(404)
122122

123123
logger = g.logger.getChild('queue')

0 commit comments

Comments
 (0)