Compare commits
No commits in common. "c4c0ef065bc0e3e5d96ab5d961ffa0b435cfd37a" and "f19fc2e8c0a0739effbf03b6f8e01cc5995e6d73" have entirely different histories.
c4c0ef065b
...
f19fc2e8c0
@ -8,7 +8,6 @@ import sys
|
||||
# PyQt imports
|
||||
|
||||
# Third party imports
|
||||
import line_profiler
|
||||
from sqlalchemy import (
|
||||
bindparam,
|
||||
delete,
|
||||
@ -564,9 +563,8 @@ class PlaylistRows(dbtables.PlaylistRowsTable):
|
||||
)
|
||||
|
||||
@staticmethod
|
||||
@line_profiler.profile
|
||||
def update_plr_row_numbers(
|
||||
session: Session, playlist_id: int, sqla_map: List[dict[str, int]], dummy_for_profiling=None
|
||||
session: Session, playlist_id: int, sqla_map: List[dict[str, int]]
|
||||
) -> None:
|
||||
"""
|
||||
Take a {plrid: row_number} dictionary and update the row numbers accordingly
|
||||
|
||||
@ -44,7 +44,6 @@ from PyQt6.QtWidgets import (
|
||||
)
|
||||
|
||||
# Third party imports
|
||||
import line_profiler
|
||||
import pipeclient
|
||||
from pygame import mixer
|
||||
from sqlalchemy.exc import IntegrityError
|
||||
@ -1069,8 +1068,7 @@ class Window(QMainWindow, Ui_MainWindow):
|
||||
else:
|
||||
webbrowser.get("browser").open_new_tab(url)
|
||||
|
||||
@line_profiler.profile
|
||||
def paste_rows(self, dummy_for_profiling=None) -> None:
|
||||
def paste_rows(self) -> None:
|
||||
"""
|
||||
Paste earlier cut rows.
|
||||
"""
|
||||
|
||||
@ -26,7 +26,6 @@ from PyQt6.QtGui import (
|
||||
)
|
||||
|
||||
# Third party imports
|
||||
import line_profiler
|
||||
import obswebsocket # type: ignore
|
||||
|
||||
# import snoop # type: ignore
|
||||
@ -976,8 +975,7 @@ class PlaylistModel(QAbstractTableModel):
|
||||
# Update display
|
||||
self.invalidate_row(track_sequence.previous.row_number)
|
||||
|
||||
@line_profiler.profile
|
||||
def refresh_data(self, session: db.session, dummy_for_profiling=None) -> None:
|
||||
def refresh_data(self, session: db.session) -> None:
|
||||
"""Populate self.playlist_rows with playlist data"""
|
||||
|
||||
# We used to clear self.playlist_rows each time but that's
|
||||
|
||||
Loading…
Reference in New Issue
Block a user