Skip to content

Commit

Permalink
Move require statement down
Browse files Browse the repository at this point in the history
  • Loading branch information
anglee committed Oct 20, 2022
1 parent c370405 commit 23f7069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/lib/cmd/add.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
"use strict";

const co = require("co");
const PrintStatusUtil = require('../util/print_status_util.js');

/**
* This module contains methods for implementing the `add` command.
Expand Down Expand Up @@ -98,6 +97,7 @@ exports.executeableSubcommand = co.wrap(function *(args) {
const Add = require("../util/add");
const GitUtil = require("../util/git_util");
const StatusUtil = require("../util/status_util");
const PrintStatusUtil = require("../util/print_status_util");

const repo = yield GitUtil.getCurrentRepo();
const workdir = repo.workdir();
Expand Down

0 comments on commit 23f7069

Please sign in to comment.