Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes to use docformatter
Browse files Browse the repository at this point in the history
joachimmetz committed Jan 28, 2024
1 parent 73e1791 commit cd49038
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dfvfs/helpers/file_system_searcher.py
Original file line number Diff line number Diff line change
@@ -3,7 +3,10 @@

import re

import re._constants as sre_constants
try:
import re._constants as sre_constants
except ImportError:
import sre_constants # pylint: disable=deprecated-module

from dfvfs.lib import definitions
from dfvfs.lib import errors

0 comments on commit cd49038

Please sign in to comment.