summaryrefslogtreecommitdiff
path: root/doc/data/messages/n/not-context-manager/bad.py
blob: 35107dbac29c890a8b188d9040ab18caee5bec55 (plain)
1
2
3
4
5
6
7
class MyContextManager:
    def __enter__(self):
        pass


with MyContextManager() as c:  # [not-context-manager]
    pass