Added missing from typing imports. (#8724)

This commit is contained in:
Mads Jensen
2021-03-23 21:33:47 +01:00
committed by GitHub
parent 1d7ddb0c0c
commit d3b74f41e0
13 changed files with 15 additions and 1 deletions
+2
View File
@@ -1,4 +1,6 @@
"""Tests for AugeasParserNode classes"""
from typing import List
try:
import mock
except ImportError: # pragma: no cover
+1
View File
@@ -1,6 +1,7 @@
"""Test for certbot_apache._internal.http_01."""
import unittest
import errno
from typing import List
try:
import mock