Skip to content

Commit

Permalink
remove object subclass
Browse files Browse the repository at this point in the history
  • Loading branch information
aktech committed Oct 31, 2023
1 parent 898dd16 commit 2da64f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_autoimp.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,10 +540,10 @@ class B:
def test_find_missing_imports_class_name_1():
code = dedent(
"""
class Corinne(object):
class Corinne:
pass
class Bobtail(object):
class Chippewa(object):
class Bobtail:
class Chippewa:
Bobtail
Rockton = Passall, Corinne, Chippewa
""")
Expand Down

0 comments on commit 2da64f8

Please sign in to comment.