File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 88 - id : trailing-whitespace
99 - id : end-of-file-fixer
1010 - repo : https://github.com/ambv/black
11- rev : 23.1.0
11+ rev : 23.9.1
1212 hooks :
1313 - id : black
1414 - repo : https://github.com/pycqa/flake8
15- rev : 6.0 .0
15+ rev : 6.1 .0
1616 hooks :
1717 - id : flake8
1818 additional_dependencies :
1919 - importlib_metadata<5
2020 - repo : https://github.com/asottile/pyupgrade
21- rev : v3.3.1
21+ rev : v3.14.0
2222 hooks :
2323 - id : pyupgrade
2424 args : [--py36-plus]
Original file line number Diff line number Diff line change @@ -1116,8 +1116,8 @@ class Baz(Document):
11161116 foo .save ()
11171117 foo .reload ()
11181118
1119- assert type (foo .bar ) == Bar
1120- assert type (foo .baz ) == Baz
1119+ assert isinstance (foo .bar , Bar )
1120+ assert isinstance (foo .baz , Baz )
11211121
11221122 def test_document_reload_reference_integrity (self ):
11231123 """
You can’t perform that action at this time.
0 commit comments