Skip to content

Commit

Permalink
fixed wrong import
Browse files Browse the repository at this point in the history
  • Loading branch information
javiercbk committed Oct 18, 2017
1 parent f95b082 commit fa8d4cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/collection.js
@@ -1,6 +1,6 @@
/* eslint-disable no-unused-vars, prefer-rest-params */
const _ = require('lodash');
const mingo = require('../../mingo');
const mingo = require('./mingo');
const bson = require('bson');

const aggregator = require('./aggregator');
Expand Down
2 changes: 1 addition & 1 deletion lib/cursor.js
@@ -1,6 +1,6 @@
/* eslint-disable prefer-rest-params */
const Promise = require('bluebird');
const mingo = require('../../mingo');
const mingo = require('./mingo');
const Stream = require('stream');

class Cursor {
Expand Down

0 comments on commit fa8d4cd

Please sign in to comment.