Skip to content

Commit

Permalink
fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
mariostieriansys committed Dec 30, 2024
1 parent 52eea3d commit 1cdff15
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/ansys/pyensight/core/dvs.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
launch a local PyEnSight session, or connect to an existing one, and finally
to send data from the clients to the servers.
"""
import logging
import glob
import logging
import os
import pathlib
import platform
Expand Down Expand Up @@ -504,8 +504,9 @@ def _check_updates_started(self):
if not started:
time.sleep(0.5)
if not started:
for c,vals in self._clients.items():
logging.debug(f"Client {c}, update: {vals["update_started"]}")
for c, vals in self._clients.items():
update = vals["update_started"]
logging.debug(f"Client {c}, update: {update}")
raise RuntimeError("Not all clients have begun the updates.")

def send_coordinates(self, part_id: int, vertices: Union[List[float], numpy.ndarray]):
Expand Down

0 comments on commit 1cdff15

Please sign in to comment.