« get me outta code hell

tui-lib - Pure Node.js library for making visual command-line programs (ala vim, ncdu)
about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ui/DisplayElement.js1
-rw-r--r--ui/Element.js1
2 files changed, 1 insertions, 1 deletions
diff --git a/ui/DisplayElement.js b/ui/DisplayElement.js
index 8720142..a7a371a 100644
--- a/ui/DisplayElement.js
+++ b/ui/DisplayElement.js
@@ -1,5 +1,4 @@
 const Element = require('./Element')
-const exception = require('../util/exception')
 
 module.exports = class DisplayElement extends Element {
   // A general class that handles dealing with screen coordinates, the tree
diff --git a/ui/Element.js b/ui/Element.js
index c5beb59..b9b8c61 100644
--- a/ui/Element.js
+++ b/ui/Element.js
@@ -1,4 +1,5 @@
 const EventEmitter = require('events')
+const exception = require('../util/exception')
 
 module.exports = class Element extends EventEmitter {
   // The basic class containing methods for working with an element hierarchy.