File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 3333check_dependency_versions = _python_package_support .check_dependency_versions
3434check_dependency_versions ("google.api_core" )
3535
36- warn_deprecation_for_versions_less_than = _python_package_support .warn_deprecation_for_versions_less_than
36+ warn_deprecation_for_versions_less_than = (
37+ _python_package_support .warn_deprecation_for_versions_less_than
38+ )
Original file line number Diff line number Diff line change @@ -163,8 +163,11 @@ def test_override_gapic_end_only():
163163 {version_tuple : overridden_info },
164164 ):
165165 result_before_boundary = check_python_version (
166- today = custom_gapic_end + datetime .timedelta (days = - 1 ))
167- assert result_before_boundary == PythonVersionStatus .PYTHON_VERSION_DEPRECATED
166+ today = custom_gapic_end + datetime .timedelta (days = - 1 )
167+ )
168+ assert (
169+ result_before_boundary == PythonVersionStatus .PYTHON_VERSION_DEPRECATED
170+ )
168171
169172 result_at_boundary = check_python_version (today = custom_gapic_end )
170173 assert result_at_boundary == PythonVersionStatus .PYTHON_VERSION_EOL
You can’t perform that action at this time.
0 commit comments