mirror of
https://github.com/Sei-Lisa/LSL-PyOptimizer
synced 2025-07-01 23:58:20 +00:00
Use frozenset more consistently
This commit is contained in:
parent
d9938f1a37
commit
4fd4bf71aa
6 changed files with 23 additions and 23 deletions
|
@ -47,7 +47,7 @@ xp_error_messages = {
|
|||
18:u'experience permissions request timed out'
|
||||
}
|
||||
|
||||
valid_inventory_kinds = frozenset((0, 1, 3, 5, 6, 7, 10, 13, 20, 21))
|
||||
valid_inventory_kinds = frozenset({0, 1, 3, 5, 6, 7, 10, 13, 20, 21})
|
||||
|
||||
def llCloud(v):
|
||||
v = v2f(v)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue