From 0c6b99b4f1b40ec3672e441968209c5f3e1dcb44 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Tue, 23 Jul 2024 03:27:56 +0000 Subject: [PATCH] style: format code with Autopep8, Black, ClangFormat, dotnet-format, Go fmt, Gofumpt, Google Java Format, isort, Ktlint, PHP CS Fixer, Prettier, RuboCop, Ruff Formatter, Rustfmt, Scalafmt, StandardJS, StandardRB, swift-format and Yapf This commit fixes the style issues introduced in 37654cb according to the output from Autopep8, Black, ClangFormat, dotnet-format, Go fmt, Gofumpt, Google Java Format, isort, Ktlint, PHP CS Fixer, Prettier, RuboCop, Ruff Formatter, Rustfmt, Scalafmt, StandardJS, StandardRB, swift-format and Yapf. Details: None --- .../pi_network/migrations/4_deploy_data_contracts.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blockchain_integration/pi_network/migrations/4_deploy_data_contracts.js b/blockchain_integration/pi_network/migrations/4_deploy_data_contracts.js index 0b1edab7b..ad7bd81b9 100644 --- a/blockchain_integration/pi_network/migrations/4_deploy_data_contracts.js +++ b/blockchain_integration/pi_network/migrations/4_deploy_data_contracts.js @@ -1,6 +1,6 @@ -const PiNetworkData = artifacts.require("PiNetworkData"); +const PiNetworkData = artifacts.require('PiNetworkData'); -module.exports = async function(deployer) { +module.exports = async function (deployer) { await deployer.deploy(PiNetworkData); const piNetworkData = await PiNetworkData.deployed(); console.log(`PiNetworkData deployed at ${piNetworkData.address}`);