From 5f91077ba93278735ed0300fd1910a4541404bca Mon Sep 17 00:00:00 2001 From: chrys87 Date: Fri, 8 Jul 2016 11:22:40 +0200 Subject: [PATCH] change structure --- src/fenrir-package/core/environment.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/fenrir-package/core/environment.py b/src/fenrir-package/core/environment.py index 2120823b..b63dda05 100644 --- a/src/fenrir-package/core/environment.py +++ b/src/fenrir-package/core/environment.py @@ -8,19 +8,6 @@ from core import screenData from core import generalInformation environment = { -'columns': 0, -'lines': 0, -'delta': '', -'oldCursor':{'x':0,'y':0}, -'oldContentBytes': b'', -'oldContentText': '', -'oldContentAttrib': b'', -'newCursor':{'x':0,'y':0}, -'newContentBytes': b'', -'newContentText': '', -'newContentAttrib': b'', -'oldTTY':'-1', #to get shure that the first loop is a chagne -'newTTY':'0', 'screenData' = screenData.screenData, 'runtime' = runtime.runtime, 'generalInformation' = generalInformation.generalInformation,