# HG changeset patch # User John Rouillard # Date 1733941189 18000 # Node ID 30818cc180582617e574b2bc3260b18be9f6e874 # Parent 569aff540a21d69666a5f8463fb116a2a7381f11 chore(ruff): suppress py2/py3 compatibility code thought useless diff -r 569aff540a21 -r 30818cc18058 roundup/rest.py --- a/roundup/rest.py Wed Dec 11 13:17:42 2024 -0500 +++ b/roundup/rest.py Wed Dec 11 13:19:49 2024 -0500 @@ -55,7 +55,7 @@ # Py3 compatible basestring try: - basestring + basestring # noqa: B018 except NameError: basestring = str unicode = str