Skip to content

Commit

Permalink
fix: set explicit type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
pyoor committed Nov 15, 2021
1 parent 299faf1 commit 1fab91a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bugmon/evaluator_configs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
# flake8: noqa
from typing import List, Type

from .base import BugConfiguration
from .browser import BrowserConfiguration
from .js import JSConfiguration

BugConfigs = [BrowserConfiguration, JSConfiguration]
BugConfigs: List[Type[BugConfiguration]] = [BrowserConfiguration, JSConfiguration]

0 comments on commit 1fab91a

Please sign in to comment.