Skip to content

Commit c00d1b5

Browse files
committed
Fix ruff
1 parent 8703791 commit c00d1b5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/sage/cli/eval_cmd.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
from sage.cli.options import CliOptions
44
from sage.repl.preparse import preparse
55
from sage.all import sage_globals
6-
import os, sys
6+
import os
7+
import sys
78

89

910
class EvalCmd:

src/sage/cli/run_file_cmd.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
from sage.repl.load import load_cython
66
from sage.misc.temporary_file import tmp_filename
77
from sage.all import sage_globals
8-
import os, sys
8+
import os
9+
import sys
910

1011

1112
class RunFileCmd:

0 commit comments

Comments
 (0)