mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-12-15 22:03:50 -05:00
Database storage profile passes mypy (#11342)
It already seems to pass mypy. I wonder what changed, given that it was on the exclusion list. So this commit consists of me ensuring `--disallow-untyped-defs` passes and a minor fixup to a function that returned either `True` or `None`.
This commit is contained in:
parent
5562ce6a53
commit
e605e4b8f2
4 changed files with 21 additions and 8 deletions
|
|
@ -11,19 +11,22 @@
|
|||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
from twisted.test.proto_helpers import MemoryReactor
|
||||
|
||||
from synapse.server import HomeServer
|
||||
from synapse.types import UserID
|
||||
from synapse.util import Clock
|
||||
|
||||
from tests import unittest
|
||||
|
||||
|
||||
class ProfileStoreTestCase(unittest.HomeserverTestCase):
|
||||
def prepare(self, reactor, clock, hs):
|
||||
def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer) -> None:
|
||||
self.store = hs.get_datastore()
|
||||
|
||||
self.u_frank = UserID.from_string("@frank:test")
|
||||
|
||||
def test_displayname(self):
|
||||
def test_displayname(self) -> None:
|
||||
self.get_success(self.store.create_profile(self.u_frank.localpart))
|
||||
|
||||
self.get_success(
|
||||
|
|
@ -48,7 +51,7 @@ class ProfileStoreTestCase(unittest.HomeserverTestCase):
|
|||
self.get_success(self.store.get_profile_displayname(self.u_frank.localpart))
|
||||
)
|
||||
|
||||
def test_avatar_url(self):
|
||||
def test_avatar_url(self) -> None:
|
||||
self.get_success(self.store.create_profile(self.u_frank.localpart))
|
||||
|
||||
self.get_success(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue