Skip to content

Commit

Permalink
fix(bindgen): Remove duplicate closing backets from Python imports
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed Apr 14, 2023
1 parent 45dc6e2 commit f159f67
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/bindgen/python.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,9 @@ let moduleContent = ""
})
})
usedInterfaceTypes.forEach((interfaceType) => {
moduleContent += `\n ${interfaceType},
)`
moduleContent += `\n ${interfaceType},`
})
moduleContent += "\n\n"
moduleContent += "\n)\n\n"

return moduleContent
}
Expand Down

0 comments on commit f159f67

Please sign in to comment.