Skip to content

Commit 9ef6a1d

Browse files
author
David Erb
committed
fixes lint
1 parent e6c2f36 commit 9ef6a1d

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/dls_normsql/aiomysql.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
import asyncio
2-
import glob
32

43
# This class produces log entries.
54
import logging
65
import os
7-
import shutil
86
import warnings
97
from collections import OrderedDict
108
from datetime import datetime
@@ -16,7 +14,6 @@
1614
from dls_utilpack.callsign import callsign
1715
from dls_utilpack.envvar import Envvar
1816
from dls_utilpack.explain import explain
19-
from dls_utilpack.isodatetime import isodatetime_filename
2017
from dls_utilpack.require import require
2118

2219
from dls_normsql.constants import CommonFieldnames, RevisionFieldnames, Tablenames

tests/my_database_definition.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ async def apply_revision(self, database, revision):
2929
await database.execute("CREATE TABLE `my_table2` (`number` INTEGER)")
3030

3131
await database.execute(
32-
f"ALTER TABLE my_table2 ADD COLUMN string TEXT",
32+
"ALTER TABLE my_table2 ADD COLUMN string TEXT",
3333
)
3434

3535
# ----------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)