mirror of
https://github.com/astral-sh/ruff
synced 2026-01-23 06:20:55 -05:00
14 lines
234 B
Python
14 lines
234 B
Python
breakpoint()
|
|
|
|
import pdb
|
|
import builtins
|
|
from builtins import breakpoint
|
|
from pdb import set_trace as st
|
|
from celery.contrib.rdb import set_trace
|
|
from celery.contrib import rdb
|
|
import celery.contrib.rdb
|
|
|
|
breakpoint()
|
|
st()
|
|
set_trace()
|