##// END OF EJS Templates
removed args initializer that is not used and removed unneeded code in osm init super call
Kory Donati -
Show More
@@ -47,7 +47,7 b' class OSMagics(Magics):'
47 47 self.execre = re.compile(r'(.*)\.(%s)$' % winext,re.IGNORECASE)
48 48
49 49 # call up the chain
50 super(OSMagics, self).__init__(shell=shell, **kwargs)
50 super().__init__(shell=shell, **kwargs)
51 51
52 52
53 53 @skip_doctest
@@ -520,7 +520,6 b' class OSMagics(Magics):'
520 520
521 521 dh = self.shell.user_ns['_dh']
522 522 if parameter_s:
523 args = []
524 523 try:
525 524 args = map(int,parameter_s.split())
526 525 except:
General Comments 0
You need to be logged in to leave comments. Login now