Skip to content

Commit

Permalink
prettier diff
Browse files Browse the repository at this point in the history
  • Loading branch information
kaizencc committed Jun 7, 2024
1 parent 4e03888 commit c7959f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ abstract class Validation {
t.startsWith('"')
? t.slice(1, t.length - 1)
: t.startsWith('$"')
? t.slice(2, t.length - 1)
: `{${t}}`,
? t.slice(2, t.length - 1)
: `{${t}}`,
)
.join(', ');
if (allowNull) {
Expand Down
1 change: 1 addition & 0 deletions packages/jsii-pacmak/lib/targets/python.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1902,6 +1902,7 @@ class PythonModule implements PythonType {
* Emit the README as module docstring if this is the entry point module (it loads the assembly)
*/
private emitModuleDocumentation(code: CodeMaker) {
console.log(this.moduleDocumentation);
if (this.moduleDocumentation) {
code.line(RAW_DOCSTRING_QUOTES); // raw string
code.line(this.moduleDocumentation);
Expand Down

0 comments on commit c7959f8

Please sign in to comment.