Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 5adae47

Browse files
author
Matthias Koeppe
committed
src/sage/misc/package_dir.py: Fix pycodestyle warning
1 parent cf40d61 commit 5adae47

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/sage/misc/package_dir.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
"""
22
Recognizing package directories
33
"""
4-
import os, glob
4+
import os
5+
import glob
56

67
def is_package_or_sage_namespace_package_dir(path):
7-
"""
8+
r"""
89
Return whether ``path`` is a directory that contains a Python package.
910
1011
Ordinary Python packages are recognized by the presence of `__init__.py`.

0 commit comments

Comments
 (0)