Skip to content

Commit

Permalink
- var_view.py: ruff compliance: imports sorted
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin-Prichard committed Oct 18, 2024
1 parent 4a24f19 commit 1983fa3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pudb/var_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,18 @@
# {{{ constants and imports

import inspect
import os
import warnings
from abc import ABC, abstractmethod
from collections.abc import Callable, Sized
import os
from typing import List, Tuple, Set
from typing import List, Set, Tuple

import urwid

from pudb.lowlevel import ui_log, settings_log
from pudb.ui_tools import text_width
from pudb.lowlevel import settings_log, ui_log
from pudb.settings import get_watches_file_name
from pudb.ui_tools import text_width


try:
import numpy
Expand Down

0 comments on commit 1983fa3

Please sign in to comment.