Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
snakehouse
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
public
snakehouse
Commits
53fbfe62
Commit
53fbfe62
authored
4 years ago
by
Piotr Maślanka
Browse files
Options
Downloads
Patches
Plain Diff
fix $
parent
bf4191e0
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
snakehouse/requirements.py
+2
-2
2 additions, 2 deletions
snakehouse/requirements.py
with
2 additions
and
2 deletions
snakehouse/requirements.py
+
2
−
2
View file @
53fbfe62
...
@@ -11,7 +11,7 @@ def find_pyx(directory_path: str) -> tp.List[str]:
...
@@ -11,7 +11,7 @@ def find_pyx(directory_path: str) -> tp.List[str]:
:param directory_path: directory to look through
:param directory_path: directory to look through
:return: .pyx files found
:return: .pyx files found
"""
"""
return
find_files
(
directory_path
,
r
'
(.*)\.pyx
'
,
scan_subdirectories
=
True
)
return
find_files
(
directory_path
,
'
(.*)
\
\
.pyx
$
'
,
scan_subdirectories
=
True
)
@for_argument
(
returns
=
list
)
@for_argument
(
returns
=
list
)
...
@@ -22,7 +22,7 @@ def find_c(directory_path: str) -> tp.List[str]:
...
@@ -22,7 +22,7 @@ def find_c(directory_path: str) -> tp.List[str]:
:param directory_path: directory to look through
:param directory_path: directory to look through
:return: .c files found
:return: .c files found
"""
"""
return
find_files
(
directory_path
,
r
'
(.*)\.c
'
,
scan_subdirectories
=
True
)
return
find_files
(
directory_path
,
'
(.*)
\
\
.c
$
'
,
scan_subdirectories
=
True
)
def
find_pyx_and_c
(
directory_path
:
str
)
->
tp
.
List
[
str
]:
def
find_pyx_and_c
(
directory_path
:
str
)
->
tp
.
List
[
str
]:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment