From b3823ad25ecd98a20ec8ac69d452ab63d8576930 Mon Sep 17 00:00:00 2001 From: Shae Date: Mon, 11 Dec 2023 09:59:01 -0800 Subject: [PATCH] Fixed a few issues relating to ShaeLib transition --- _rsruntime/lib/rs_lineparser.py | 3 ++- _rsruntime/lib/rs_plugins.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/_rsruntime/lib/rs_lineparser.py b/_rsruntime/lib/rs_lineparser.py index cc7f107..a09d61f 100644 --- a/_rsruntime/lib/rs_lineparser.py +++ b/_rsruntime/lib/rs_lineparser.py @@ -15,7 +15,8 @@ # RunServer Module import RS from RS import Bootstrapper, Config -from RS.ShaeLib.types import Hooks, PerfCounter +from RS.ShaeLib.types import Hooks +from RS.ShaeLib.timing import PerfCounter #> Header >/ class MCLang: diff --git a/_rsruntime/lib/rs_plugins.py b/_rsruntime/lib/rs_plugins.py index 889e5e4..b553d19 100644 --- a/_rsruntime/lib/rs_plugins.py +++ b/_rsruntime/lib/rs_plugins.py @@ -15,7 +15,8 @@ # RunServer Module import RS from RS import Config, BS -from RS.ShaeLib.types.fbd import INIBackedDict, PerfCounter +from RS.ShaeLib.types.fbd import INIBackedDict +from RS.ShaeLib.timing import PerfCounter #> Header >/ class PluginManager: