SergeyO7 commited on
Commit
54e7f3d
·
verified ·
1 Parent(s): 7c00479

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -115,7 +115,7 @@ def plot_pladder(PLadder):
115
  ax.plot([0.5, 2.5], [1, 1], 'k--')
116
  ax.plot([1, 2], [2, 2], 'k--')
117
  # Define symbol positions outside the triangle
118
- positions = [(0.2,0), (0.3,1.2), (0.8,2.2), (1.5,3), (2.2,2.2), (2.7,1.2), (3.2,0.2)]
119
  # Plot planet symbols
120
  for i, (x, y) in enumerate(positions):
121
  ax.text(x, y, planet_symbols[PLadder[i]], ha='center', va='center', fontsize=24)
 
115
  ax.plot([0.5, 2.5], [1, 1], 'k--')
116
  ax.plot([1, 2], [2, 2], 'k--')
117
  # Define symbol positions outside the triangle
118
+ positions = [(-0.2,0.2), (0.3,1.2), (0.8,2.2), (1.5,3.2), (2.2,2.2), (2.7,1.2), (3.2,0.2)]
119
  # Plot planet symbols
120
  for i, (x, y) in enumerate(positions):
121
  ax.text(x, y, planet_symbols[PLadder[i]], ha='center', va='center', fontsize=24)