From 8c040ad3dab5a27e523f3f0586004565b7f10cee Mon Sep 17 00:00:00 2001 From: Sean DeNigris Date: Thu, 1 Apr 2021 09:38:27 -0400 Subject: [PATCH] [Enh]: Start if Needed on `uniqueInstance` Access --- src/PythonBridge/PBApplication.class.st | 1 + 1 file changed, 1 insertion(+) diff --git a/src/PythonBridge/PBApplication.class.st b/src/PythonBridge/PBApplication.class.st index 610df48..c55bbcc 100644 --- a/src/PythonBridge/PBApplication.class.st +++ b/src/PythonBridge/PBApplication.class.st @@ -119,6 +119,7 @@ PBApplication class >> test [ { #category : #instructions } PBApplication class >> uniqueInstance [ + uniqueInstance ifNil: [ self start ]. ^ uniqueInstance ]