# visual.Circle is not callable

**URL:** https://discourse.psychopy.org/t/visual-circle-is-not-callable/12861
**Category:** Coding
**Created:** [April 29, 2020, 9:19am UTC](https://discourse.psychopy.org/t/visual-circle-is-not-callable/12861 "2020-04-29T09:19:37Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![jeanJ](https://avatars.discourse-cdn.com/v4/letter/j/87869e/32.png) [@jeanJ](https://discourse.psychopy.org/u/jeanJ)
#### Post date: [April 29, 2020, 9:19am UTC](https://discourse.psychopy.org/t/visual-circle-is-not-callable/12861/1 "2020-04-29T09:19:37Z")

</div>

Hello,  
I try to move a circle and i have a problem: “visual.Circle is not callable”.  
I use python 3.8.2 and Psychopy 2020.1.2.  
Here is my code:

```auto
from psychopy import visual, core
windo = visual.Window([400,400], monitor='DellHome')

x=0
y=0
stimu = visual.Circle(
    win=windo,
    units="pix",
    pos=(x,y),
    radius=10,
    fillColor=[0,0,0],
    lineColor=[-1,-1,-1],
    edges=128
)
for frameN in range (200):
    stimu.draw()
    y+=20
    windo.flip()
windo.close()

```

Any Idea? Thanks!

---

<div class="post-metadata">

### Author: ![jonathan.kominsky](https://avatars.discourse-cdn.com/v4/letter/j/a587f6/32.png) [@jonathan.kominsky](https://discourse.psychopy.org/u/jonathan.kominsky)
#### Post date: [April 29, 2020, 12:07pm UTC](https://discourse.psychopy.org/t/visual-circle-is-not-callable/12861/2 "2020-04-29T12:07:23Z")

</div>

Your script works fine for me in PsychoPy standalone version 2020.1.2. Are you using the standalone? What operating system are you working with?

---

<div class="post-metadata">

### Author: ![jeanJ](https://avatars.discourse-cdn.com/v4/letter/j/87869e/32.png) [@jeanJ](https://discourse.psychopy.org/u/jeanJ)
#### Post date: [April 29, 2020, 4:59pm UTC](https://discourse.psychopy.org/t/visual-circle-is-not-callable/12861/3 "2020-04-29T16:59:46Z")

</div>

Hello,  
I work with windows 10 but i don’t use the standalone, i use the anaconda installation with vs code.  
Thanks!
