Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
skadefro committed Oct 1, 2023
1 parent f357037 commit 3020d85
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion OpenRPA.Script/Activities/ParseUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,9 @@ public static JObject PyDictToJObjectWithGIL(PyDict dict)
public static JObject PyDictToJObject(PyDict dict)
{
JObject jobj = new JObject();
foreach(string key in dict.Keys())
foreach(object _key in dict.Keys())
{
var key = _key.ToString();
PyObject pyobj = dict.GetItem(key);
JToken value;
if (pyobj.IsNone())
Expand Down
2 changes: 1 addition & 1 deletion OpenRPA.Script/OpenRPA.Script.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="AvalonEdit" Version="6.1.3.50" />
<PackageReference Include="Python.Included" Version="3.7.3.13" />
<PackageReference Include="Python.Included" Version="3.11.4" />
<PackageReference Include="sharpAHK" Version="1.0.0.5" />
<PackageReference Include="System.Management.Automation.dll" Version="10.0.10586" />
</ItemGroup>
Expand Down

0 comments on commit 3020d85

Please # to comment.