Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenMachete committed Jan 25, 2024
1 parent 39855a4 commit 542cd1c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions ptsl/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from ptsl.errors import CommandError
from ptsl.ops import Operation


PTSL_VERSION = 1


Expand Down
4 changes: 2 additions & 2 deletions ptsl/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ def record_half_speed(self):

def create_memory_location(self,
start_time: Optional[str] = None,
location_number: Optional[int] = None,
memory_number: Optional[int] = None,
name: Optional[str] = None,
end_time: Optional[str] = None,
location: Optional[str] = None,
Expand All @@ -368,7 +368,7 @@ def create_memory_location(self,
if general_properties == None:
general_properties = MemoryLocationProperties(track_visibility=False)

Check warning on line 369 in ptsl/engine.py

View check run for this annotation

Codecov / codecov/patch

ptsl/engine.py#L368-L369

Added lines #L368 - L369 were not covered by tests
op = ops.CreateMemoryLocation(
number=location_number,
number=memory_number,
name=name,
start_time=start_time,
end_time=end_time,
Expand Down

0 comments on commit 542cd1c

Please sign in to comment.