Decrease the nail count.
(self)
| 406 | self._nailcount += 1 |
| 407 | |
| 408 | def unnail(self) -> None: |
| 409 | """Decrease the nail count.""" |
| 410 | self._nailcount -= 1 |
| 411 | |
| 412 | # The following are intended to be used by ``Table`` code handling |
| 413 | # conditions. |
no outgoing calls
no test coverage detected