From 1ab776bcb828be5ba391474def6f2cfd7a621bf9 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Sun, 9 Aug 2009 23:56:08 +0100 Subject: [PATCH] remove the unnecessary __main__ code --- terminatorlib/container.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/terminatorlib/container.py b/terminatorlib/container.py index 234529d9..107f9f7b 100755 --- a/terminatorlib/container.py +++ b/terminatorlib/container.py @@ -97,8 +97,4 @@ class Container(object): """Unzoom a terminal""" raise NotImplementedError('unzoom') -if __name__ == '__main__': - CONTAINER = Container() - CONTAINER.zoom() - # vim: set expandtab ts=4 sw=4: