Skip to content

Commit

Permalink
Update folders.py
Browse files Browse the repository at this point in the history
  • Loading branch information
aravindavk authored Jan 3, 2024
1 parent 11c0ff9 commit b64b65c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/kadalu_content_apis/folders.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def delete(self, recursive=False):
resp = self.conn.http_delete(f"{self.conn.url}/api/folders/{self.name}?recursive={recursive}")
return response_object_or_error(Folder, resp, 204)

def create_template(self, name, content, template_type, output_type="text", public=False)
def create_template(self, name, content, template_type, output_type="text", public=False):
""" Create template with folder-name """
return Template.create(self, self.name, name, content, template_type, output_type, public)

Expand Down

0 comments on commit b64b65c

Please sign in to comment.