Skip to content

Commit

Permalink
Fix Style/NestedParenthesizedCalls offense
Browse files Browse the repository at this point in the history
  • Loading branch information
tagliala committed Oct 19, 2023
1 parent f7e9012 commit b441c9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
7 changes: 0 additions & 7 deletions .rubocop_todo.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions lib/chrono_model/json.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ def create
MSG

adapter.execute 'CREATE OR REPLACE LANGUAGE plpythonu'
adapter.execute File.read(sql 'json_ops.sql')
adapter.execute File.read(sql('json_ops.sql'))
end

def drop
adapter.execute File.read(sql 'uninstall-json_ops.sql')
adapter.execute File.read(sql('uninstall-json_ops.sql'))
adapter.execute 'DROP LANGUAGE IF EXISTS plpythonu'
end

Expand Down

0 comments on commit b441c9c

Please sign in to comment.