Skip to content

Commit

Permalink
chore: fixed formatting by linter
Browse files Browse the repository at this point in the history
  • Loading branch information
mgordel committed Aug 28, 2024
1 parent 6f20b9d commit 82e008d
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion data/project-templates/js-node-esm/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ import { GolemNetwork } from "@golem-sdk/golem-js";
.then((exe) => exe.run(`echo Hello Golem from provider ${exe.provider.name} 👽`))
.then((res) => console.log(res.stdout))
.catch((err) => console.error(`Something went wrong:`, err));

} catch (err) {
console.error("Something went wrong:", err);
} finally {
Expand Down
1 change: 0 additions & 1 deletion data/project-templates/js-node/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ const { GolemNetwork } = require("@golem-sdk/golem-js");
.then((exe) => exe.run(`echo Hello Golem from provider ${exe.provider.name} 👽`))
.then((res) => console.log(res.stdout))
.catch((err) => console.error(`Something went wrong:`, err));

} catch (err) {
console.error("Something went wrong:", err);
} finally {
Expand Down
1 change: 0 additions & 1 deletion data/project-templates/ts-node-esm/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ import { GolemNetwork, MarketOrderSpec } from "@golem-sdk/golem-js";
.then((exe) => exe.run(`echo Hello Golem from provider ${exe.provider.name} 👽`))
.then((res) => console.log(res.stdout))
.catch((err) => console.error(`Something went wrong:`, err));

} catch (err) {
console.error("Something went wrong:", err);
} finally {
Expand Down
1 change: 0 additions & 1 deletion data/project-templates/ts-node/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ import { GolemNetwork, MarketOrderSpec } from "@golem-sdk/golem-js";
.then((exe) => exe.run(`echo Hello Golem from provider ${exe.provider.name} 👽`))
.then((res) => console.log(res.stdout))
.catch((err) => console.error(`Something went wrong:`, err));

} catch (err) {
console.error("Something went wrong:", err);
} finally {
Expand Down

0 comments on commit 82e008d

Please sign in to comment.