Skip to content

Commit

Permalink
fix(server) Remove unnecessary indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Mehmet Tokgöz committed Aug 31, 2022
1 parent cef8661 commit 1220938
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cicero-server/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ app.post('/invoke/:template', async function(req, httpResponse, next) {
* @param {string} templateName Name of the template
* @returns {boolean} True if the given template is a .cta file
*/
function isTemplateArchive(templateName) {
function isTemplateArchive(templateName) {
try {
fs.lstatSync(`${process.env.CICERO_DIR}/${templateName}.cta`).isFile();
return true;
Expand Down

0 comments on commit 1220938

Please sign in to comment.