From 0e555a8130b483bd732c5b2943bca2dbe6c32afc 2018-10-13 01:10:06
From: kd2718 <korydonati@gmail.com>
Date: 2018-10-13 01:10:06
Subject: [PATCH] Merge branch 'kd2718/os_scandir_prep' of github.com:kd2718/ipython into kd2718/os_scandir_prep

---

diff --git a/IPython/core/magics/osm.py b/IPython/core/magics/osm.py
index c20b839..5d1b618 100644
--- a/IPython/core/magics/osm.py
+++ b/IPython/core/magics/osm.py
@@ -47,7 +47,7 @@ class OSMagics(Magics):
             self.execre = re.compile(r'(.*)\.(%s)$' % winext,re.IGNORECASE)
 
         # call up the chain
-        super(OSMagics, self).__init__(shell=shell, **kwargs)
+        super().__init__(shell=shell, **kwargs)
 
 
     @skip_doctest
@@ -520,7 +520,6 @@ class OSMagics(Magics):
 
         dh = self.shell.user_ns['_dh']
         if parameter_s:
-            args = []
             try:
                 args = map(int,parameter_s.split())
             except: