Skip to content

Commit

Permalink
lint - kamangir/bolt#1234
Browse files Browse the repository at this point in the history
  • Loading branch information
kamangir committed Feb 18, 2024
1 parent 70a4097 commit b9656dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion abcli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

NAME = "abcli"

VERSION = "7.2692.1"
VERSION = "7.2693.1"

DESCRIPTION = "🚀 a language to speak AI."

Expand Down
4 changes: 2 additions & 2 deletions abcli/bash/list/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
delim.join(
[
item
for item in [item for item in args.items_1.split(delim)]
if item in [item for item in args.items_2.split(delim)] and item
for item in args.items_1.split(delim)
if item in args.items_2.split(delim) and item
]
)
)
Expand Down

0 comments on commit b9656dc

Please sign in to comment.