1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-03-20 06:50:23 +03:00

Fixed counter var type check

This commit is contained in:
Adolfo Gómez García 2023-10-14 17:02:00 +02:00
parent e678f9bebb
commit 6a3af87831
No known key found for this signature in database
GPG Key ID: DD1ABF20724CDA23
2 changed files with 2 additions and 1 deletions

1
server/.dmypy.json Normal file
View File

@ -0,0 +1 @@
{"pid": 1245785, "connection_name": "/tmp/tmpcboa_207/dmypy.sock"}

View File

@ -129,7 +129,7 @@ objectTypes: typing.Mapping[typing.Type[Model], int] = {
}
# Titles of types
titles: typing.Mapping[int, str] = {
titles: typing.Mapping[int, typing.Any] = {
CT_ASSIGNED: _('Assigned'),
CT_INUSE: _('In use'),
CT_LOAD: _('Load'),