Changeset 86f88a4 in trunk


Ignore:
Timestamp:
2020-11-29T21:32:19Z (5 years ago)
Author:
Jason R. Coombs <jaraco@…>
Branches:
master
Children:
d2d3f1f4
Parents:
54e4549
Message:

Satisfy type checks in test_dirnode

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/allmydata/test/test_dirnode.py

    r54e4549 r86f88a4  
    15271527
    15281528@implementer(IMutableFileNode)
    1529 class FakeMutableFile(object):
     1529class FakeMutableFile(object):  # type: ignore # incomplete interface
    15301530    counter = 0
    15311531    def __init__(self, initial_contents=""):
     
    15881588        return defer.succeed(FakeMutableFile(contents))
    15891589
    1590 class FakeClient2(_Client):
     1590class FakeClient2(_Client):  # type: ignore # ambiguous MRO
    15911591    def __init__(self):
    15921592        self.nodemaker = FakeNodeMaker(None, None, None,
Note: See TracChangeset for help on using the changeset viewer.