We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fe0f82 commit ce8f212Copy full SHA for ce8f212
sdv/_utils.py
@@ -273,7 +273,7 @@ def check_sdv_versions_and_warn(synthesizer):
273
"""
274
current_community_version = getattr(version, 'community', None)
275
current_enterprise_version = getattr(version, 'enterprise', None)
276
- if synthesizer.__class__.__name__ != 'DayZSynthesizer' and synthesizer._fitted:
+ if getattr(synthesizer, '_fitted', False):
277
fitted_community_version = getattr(synthesizer, '_fitted_sdv_version', None)
278
fitted_enterprise_version = getattr(synthesizer, '_fitted_sdv_enterprise_version', None)
279
community_mismatch = current_community_version != fitted_community_version
0 commit comments