Skip to content

Commit

Permalink
Remove trailing semi-colon
Browse files Browse the repository at this point in the history
  • Loading branch information
phpcontrols committed Aug 22, 2023
1 parent 0f78480 commit f5a90da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class PythonGridDbData():

def __init__(self, sql):

self.__gridName = request.args['gn'] if 'gn' in request.args.keys() else sys.exit('PYTHONGRID_ERROR: ULR parameter "gn" is not defined.');
self.__gridName = request.args['gn'] if 'gn' in request.args.keys() else sys.exit('PYTHONGRID_ERROR: ULR parameter "gn" is not defined.')
self.__data_type = request.args['dt'] if 'dt' in request.args.keys() else 'json'
self.__grid_sql = sql
self.__sql_filter = '' #TODO filter from set_query_filter()
Expand Down

0 comments on commit f5a90da

Please sign in to comment.