File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -5359,8 +5359,8 @@ contributions:
5359
5359
source :
5360
5360
https://github.com/alexdmiller/shape-mapper/releases/latest/download/shapemapper.txt
5361
5361
name : Shape Mapper
5362
- authors : ' [Alex Miller](https\ ://alexmiller.cv/)'
5363
- url : https\ ://github.com/alexdmiller/shape-mapper
5362
+ authors : ' [Alex Miller](https://alexmiller.cv/)'
5363
+ url : https://github.com/alexdmiller/shape-mapper
5364
5364
categories :
5365
5365
- 3D
5366
5366
sentence : Projection mapping library for 3D models
@@ -5401,8 +5401,8 @@ contributions:
5401
5401
source :
5402
5402
https://github.com/vincentsijben/vjmotion-processing/releases/latest/download/VJMotion.txt
5403
5403
name : VJ Motion
5404
- authors : ' [Vincent Sijben](https\ ://github.com/vincentsijben)'
5405
- url : https\ ://vincentsijben.github.io/vjmotion-processing/
5404
+ authors : ' [Vincent Sijben](https://github.com/vincentsijben)'
5405
+ url : https://vincentsijben.github.io/vjmotion-processing/
5406
5406
categories :
5407
5407
- Math
5408
5408
- Sound
Original file line number Diff line number Diff line change @@ -73,7 +73,11 @@ def read_properties_txt(properties_url):
73
73
return r .text
74
74
75
75
def parse_text (properties_raw ):
76
- return jp .loads (properties_raw )
76
+ properties_dict = {
77
+ key : value .split ('#' )[0 ].strip () if isinstance (value , str ) else value
78
+ for key , value in jp .loads (properties_raw ).items ()
79
+ }
80
+ return properties_dict
77
81
78
82
def validate_existing (properties_dict ):
79
83
# validation on existing contribution is weaker
You can’t perform that action at this time.
0 commit comments