Skip to content

Commit

Permalink
style: format code with Autopep8, Black, ClangFormat, dotnet-format, …
Browse files Browse the repository at this point in the history
…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 0f8e78e 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
  • Loading branch information
deepsource-autofix[bot] authored May 10, 2024
1 parent 0f8e78e commit 80b0ed9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/controllers/index.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
const express = require("express");
const router = express.Router();
const express = require('express')
const router = express.Router()

const AccountsController = require("./accounts");
const TransfersController = require("./transfers");
const AccountsController = require('./accounts')
const TransfersController = require('./transfers')

router.use("/accounts", AccountsController);
router.use("/transfers", TransfersController);
router.use('/accounts', AccountsController)
router.use('/transfers', TransfersController)

module.exports = router;
module.exports = router

0 comments on commit 80b0ed9

Please sign in to comment.