Commit 2611b701 authored by Ivan Tyagov's avatar Ivan Tyagov

Clean up.

parent 98b0ef15
......@@ -89,14 +89,6 @@ class RamSession(Session):
""" Update current aquisition context. """
self._aq_context = aq_context
# disabled as session should be dictionary like
# def __getattr__(self, key, default=_marker):
# if key in self.data:
# return self.__getitem__(key)
# if default is not _marker:
# return default
# raise AttributeError, key
def __getitem__(self, key):
if key in self.data:
value = self.data[key]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment