Skip to content

Commit

Permalink
Fix default seeder delegation in graalpy_virtualenv
Browse files Browse the repository at this point in the history
Fixes #427
  • Loading branch information
msimacek committed Oct 9, 2024
1 parent 0967368 commit 82ce0ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions graalpy_virtualenv/graalpy_virtualenv/graalpy.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022, 2023, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2022, 2024, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# The Universal Permissive License (UPL), Version 1.0
Expand Down Expand Up @@ -95,7 +95,7 @@ def _seeder_selector_get_default_override(self):
if self.interpreter.implementation == "GraalVM":
return "graalpy"
else:
return _get_default_orig(self)
return _get_default_orig()

SeederSelector._get_default = _seeder_selector_get_default_override
except ImportError:
Expand Down

0 comments on commit 82ce0ec

Please sign in to comment.