Skip to content

Commit

Permalink
src/cython/vapoursynth.pyx: cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
WolframRhodium committed Apr 4, 2024
1 parent 6539ded commit 435db32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cython/vapoursynth.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@ cdef void typedDictToMap(dict ndict, dict atypes, VSMap *inm, VSCore *core, cons
if val is None:
continue

if isinstance(val, (str, bytes, bytearray, enum.Flag, RawNode, RawFrame, enum.Flag)) or not isinstance(val, Iterable):
if isinstance(val, (str, bytes, bytearray, enum.Flag, RawNode, RawFrame)) or not isinstance(val, Iterable):
val = [val]

for v in val:
Expand Down

0 comments on commit 435db32

Please sign in to comment.