Skip to content

Commit

Permalink
remove duplicates
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Mar 4, 2024
1 parent 1f630b7 commit cfd23b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/codecs/video.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def get_hardware_encoders(names=HARDWARE_ENCODER_OPTIONS) -> list[str]:

def filt(prefix: str, name: str, inlist, all_fn: Callable, all_options: tuple[str, ...]) -> list[str]:
# log("filt%s", (prefix, name, inlist, all_fn, all_list))
instr = csvstrl(inlist or ()).strip(",")
instr = csvstrl(set(inlist or ())).strip(",")
if instr == "none":
return []

Expand Down

0 comments on commit cfd23b1

Please sign in to comment.