Skip to content

Commit 4e8e54e

Browse files
committed
typo
1 parent 48ab00f commit 4e8e54e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

sdv/_utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,7 @@ def check_sdv_versions_and_warn(synthesizer):
278278
fitted_enterprise_version = getattr(synthesizer, '_fitted_sdv_enterprise_version', None)
279279
community_mismatch = current_community_version != fitted_community_version
280280
enterprise_mismatch = current_enterprise_version != fitted_enterprise_version
281+
281282
if community_mismatch or enterprise_mismatch:
282283
static_message = (
283284
'The latest bug fixes and features may not be available for this synthesizer. '

tests/unit/test__utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ def test_check_sdv_versions_and_warn_no_mismatch(mock_warnings):
410410

411411
@patch('sdv._utils.warnings')
412412
def test_check_sdv_versions_and_warn_dayz(mock_warnings):
413-
"""Test that the method work for ``DayZSynthesizer``."""
413+
"""Test that the method works for ``DayZSynthesizer``."""
414414
# Setup
415415
synthesizer = Mock()
416416
synthesizer._fitted = False

0 commit comments

Comments
 (0)