From 44f0877fda530d26c5ee1ab0f4aae06fed22b4bc Mon Sep 17 00:00:00 2001 From: ShreyaTalati Date: Fri, 24 Nov 2023 18:16:37 +0000 Subject: [PATCH] style: apply ruff format --- src/python/parla/common/globals.py | 1 + src/python/parla/common/spawn.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/python/parla/common/globals.py b/src/python/parla/common/globals.py index 68bfcd19..63156935 100644 --- a/src/python/parla/common/globals.py +++ b/src/python/parla/common/globals.py @@ -48,6 +48,7 @@ VCU_BASELINE = 1000 GLOBAL_START_TIME = time.time() + class SynchronizationType(IntEnum): """ This class declares the type (if any) of runeahead synchronization diff --git a/src/python/parla/common/spawn.py b/src/python/parla/common/spawn.py index e251d9ad..a88e52e0 100644 --- a/src/python/parla/common/spawn.py +++ b/src/python/parla/common/spawn.py @@ -17,7 +17,7 @@ SynchronizationType, crosspy, CROSSPY_ENABLED, - GLOBAL_START_TIME + GLOBAL_START_TIME, ) import inspect from typing import Collection, Any, Union, List, Tuple