Specter icon indicating copy to clipboard operation
Specter copied to clipboard

Incomplete decorator cannot be put after a metadata decorator

Open jmvrbanac opened this issue 8 years ago • 0 comments

If the Incomplete decorator is at the end of the execution chain

    @incomplete
    @metadata(category='positive')
    def can_retrieve(self):
        pass

It results in output like:

    --snip--
    ∟ DECORATOR ONCALL
    --snip--

When It really should look like:

    --snip--
    ∟ can retrieve (incomplete)
    --snip--

jmvrbanac avatar Apr 17 '17 19:04 jmvrbanac