Skip to content

Commit

Permalink
update to use psycopg
Browse files Browse the repository at this point in the history
  • Loading branch information
chmnata committed Aug 2, 2024
1 parent cd329d4 commit c3176cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rick.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"""
Version 0.8.0
"""
from psycopg2 import connect
import psycopg2.sql as pg
from psycopg import connect
import psycopg.sql as pg
import pandas.io.sql as pandasql
import matplotlib as mpl
import matplotlib.pyplot as plt
Expand Down Expand Up @@ -1643,4 +1643,4 @@ def general_grouped_bar_chart(data:pd.DataFrame, param_axis:str, index_axis:str,
)


return fig, ax
return fig, ax

0 comments on commit c3176cc

Please sign in to comment.