rhinomcp 0.1.3.0__py3-none-any.whl → 0.1.3.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
rhinomcp/server.py CHANGED
@@ -12,11 +12,8 @@ from pathlib import Path
12
12
  import base64
13
13
  from urllib.parse import urlparse
14
14
 
15
- # load rhino_script_syntax.json
16
- from pathlib import Path
17
-
18
15
  # Define path to static folder
19
- JSONFILE = Path("./static/rhinoscriptsyntax.json")
16
+ JSONFILE = Path("./src/rhinomcp/static/rhinoscriptsyntax.json")
20
17
 
21
18
  with open(JSONFILE, 'r') as f:
22
19
  rhinoscriptsyntax_json = json.loads(f.read())