Mercurial > p > roundup > code
changeset 8085:3a674b7eb07f
chore: ruff sort imports.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 14 Jul 2024 13:00:12 -0400 |
| parents | 2943140f5286 |
| children | 39013eba1aaf |
| files | roundup/scripts/roundup_admin.py |
| diffstat | 1 files changed, 1 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/roundup/scripts/roundup_admin.py Sun Jul 14 12:52:10 2024 -0400 +++ b/roundup/scripts/roundup_admin.py Sun Jul 14 13:00:12 2024 -0400 @@ -18,11 +18,9 @@ """ __docformat__ = 'restructuredtext' -import sys - - # --- patch sys.path to make sure 'import roundup' finds correct version import os.path as osp +import sys thisdir = osp.dirname(osp.abspath(__file__)) rootdir = osp.dirname(osp.dirname(thisdir))
