From 8a471f0b43afda9bff3b58bf53de61f48d52f393 Mon Sep 17 00:00:00 2001 From: Craig Warren Date: Tue, 17 May 2016 17:51:10 +0100 Subject: [PATCH] Removed unnecessary import and added comment. --- gprMax/grid.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gprMax/grid.py b/gprMax/grid.py index 46f260ae..241dc255 100644 --- a/gprMax/grid.py +++ b/gprMax/grid.py @@ -17,14 +17,14 @@ # along with gprMax. If not, see . import numpy as np -import matplotlib.pyplot as plt from gprMax.constants import c, floattype, complextype from gprMax.materials import Material -class Grid(): - +class Grid(object): + """Generic grid/mesh.""" + def __init__(self, grid): self.nx = grid.shape[0] self.ny = grid.shape[1]