Skip to content

Commit

Permalink
Updates (#60) (#61)
Browse files Browse the repository at this point in the history
* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip
  • Loading branch information
Findeton committed Feb 20, 2023
1 parent 8fae2f6 commit 1874add
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion frestq/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def get_json(self, force=False, silent=False, cache=True):
if not (force or self.is_json):
return None

data = self._get_data_for_json(cache=cache)
data = self.get_data(cache=cache)

try:
rv = loads(data.decode('utf-8'))
Expand Down
2 changes: 1 addition & 1 deletion frestq/frestq_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def get_json(self, force=False, silent=False, cache=True):
if not (force or self.is_json):
return None

data = self._get_data_for_json(cache=cache)
data = self.get_data(cache=cache)

try:
rv = loads(data.decode('utf-8'))
Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@

apscheduler==3.7.0
requests==2.22.0
Flask==1.0.0
Flask-SQLAlchemy==2.4.4
Jinja2==2.11.3
MarkupSafe==0.23
Flask==2.0.3
Flask-SQLAlchemy==2.5.1
Jinja2==3.1.2
MarkupSafe==2.1.1
SQLAlchemy==1.3.23
Werkzeug==1.0.1
Werkzeug==2.2.3
argparse==1.2.1
cffi==1.14.4
ipdb==0.13.9
ipython==8.10.0
itsdangerous==0.24
itsdangerous==2.0
prettytable==0.7.2
pycparser==2.10
uwsgi==2.0.18
Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
install_requires=[
'apscheduler==3.7.0',
'requests==2.22.0',
'Flask==1.0.0',
'Flask-SQLAlchemy==2.4.4',
'Jinja2==2.11.3',
'MarkupSafe==0.23',
'Flask==2.0.3',
'Flask-SQLAlchemy==2.5.1',
'Jinja2==3.1.2',
'MarkupSafe==2.1.1',
'SQLAlchemy==1.3.23',
'Werkzeug==1.0.1',
'Werkzeug==2.2.3',
'argparse==1.2.1',
'cffi==1.14.4',
'ipdb==0.13.9',
'ipython==8.10.0',
'itsdangerous==0.24',
'itsdangerous==2.0',
'prettytable==0.7.2',
'pycparser==2.10',
'uwsgi==2.0.18',
Expand Down

0 comments on commit 1874add

Please sign in to comment.