Skip to content

robot.running.importer

ImportCache

ImportCache()

Keeps track on and optionally caches imported items.

Handles paths in keys case-insensitively on case-insensitive OSes. Unlike dicts, this storage accepts mutable values in keys.

Source code in src/robot/running/importer.py
def __init__(self):
    self._keys = []
    self._items = []