Skip to content

Commit b1867f1

Browse files
authored
Removed variable annotation in line 3094.
This was causing syntaz error to be raised in python versions prior 3.7.
1 parent bcdafc9 commit b1867f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

raylibpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3091,7 +3091,7 @@ def get_dropped_files() -> Tuple[str, ...]:
30913091
"""Get dropped files names"""
30923092
count = Int(0)
30933093
result = _rl.GetDroppedFiles(byref(count))
3094-
files: list = []
3094+
files = []
30953095
for i in range(count.value):
30963096
files.append(result[i].decode('utf-8'))
30973097
return tuple(files)

0 commit comments

Comments
 (0)