Skip to content

Commit 3868abe

Browse files
author
Stefan Schneider
committed
minor style fix
1 parent 928f9ed commit 3868abe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deepcomp/env/entities/user.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@ def plot(self, ax, radius=2, details=False):
118118

119119
if details:
120120
# show curr data rate and utility below the UE
121-
artists.append(ax.annotate(f'r: {self.curr_dr:.2f}', xy=(self.pos.x, self.pos.y - radius -2),
121+
artists.append(ax.annotate(f'r: {self.curr_dr:.2f}', xy=(self.pos.x, self.pos.y - radius - 2),
122122
ha='center', va='center'))
123-
artists.append(ax.annotate(f'qoe: {self.utility:.2f}', xy=(self.pos.x, self.pos.y - radius -6),
123+
artists.append(ax.annotate(f'qoe: {self.utility:.2f}', xy=(self.pos.x, self.pos.y - radius - 6),
124124
ha='center', va='center'))
125125
return artists
126126

0 commit comments

Comments
 (0)