Skip to content

Commit 744e4fb

Browse files
committed
RuntimeConfig more lint fixes.
1 parent 5a7a6f0 commit 744e4fb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

runtimeconfig/unit_tests/test__helpers.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
class Test_config_name_from_full_name(unittest.TestCase):
1919

2020
def _callFUT(self, full_name):
21-
from google.cloud.runtimeconfig._helpers import config_name_from_full_name
21+
from google.cloud.runtimeconfig._helpers import (
22+
config_name_from_full_name)
2223
return config_name_from_full_name(full_name)
2324

2425
def test_w_simple_name(self):
@@ -39,7 +40,8 @@ def test_w_name_w_all_extras(self):
3940
class Test_variable_name_from_full_name(unittest.TestCase):
4041

4142
def _callFUT(self, full_name):
42-
from google.cloud.runtimeconfig._helpers import variable_name_from_full_name
43+
from google.cloud.runtimeconfig._helpers import (
44+
variable_name_from_full_name)
4345
return variable_name_from_full_name(full_name)
4446

4547
def test_w_simple_name(self):

0 commit comments

Comments
 (0)