Skip to content

Commit e8a95f9

Browse files
committed
Fix url not callable
Fixes #7
1 parent ae2afaa commit e8a95f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pygoruut/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ def url(self, subpath):
2525

2626
class ConfigApi:
2727
def __init__(self, url):
28-
self.url = url
28+
self._url = url
2929

3030
def serialize(self, filename):
3131
return
3232

3333
def url(self, subpath):
34-
path = self.url + "/" + subpath
34+
path = self._url + "/" + subpath
3535
#print(path)
3636
return path

0 commit comments

Comments
 (0)