Skip to content

Commit

Permalink
isort
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasdiener committed Apr 7, 2023
1 parent 4829ddb commit 8d82bf7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions logpyle/pandalyzer.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import code
import pandas as pd
from sqlalchemy import create_engine
from typing import Optional
from warnings import warn
from pytools import Table

from typing import Optional
import pandas as pd
from pytools import Table
from sqlalchemy import create_engine

# Commands:
# .help show this help message
Expand Down Expand Up @@ -135,7 +135,7 @@ def quantities(self, where=None) -> None:
print(table_from_df(res))

def plot(self, values: list, **kwargs):
from matplotlib.pyplot import show, legend
from matplotlib.pyplot import legend, show

if len(values) < 2:
raise ValueError("Need at least two elements in 'values'.")
Expand Down Expand Up @@ -205,10 +205,10 @@ def __init__(self, db):
pass

try:
import atexit
import os
import readline
import rlcompleter # noqa: F401
import os
import atexit

histfile = os.path.join(os.environ["HOME"], ".runalyzerhist")
if os.access(histfile, os.R_OK):
Expand Down

0 comments on commit 8d82bf7

Please sign in to comment.