Skip to content

Commit 39eb5ba

Browse files
committed
Fixed some typos and stylistic issues
1 parent 2dc3b75 commit 39eb5ba

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

arca/_arca.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def null_cache():
134134
return region
135135

136136
def validate_repo_url(self, repo: str):
137-
""" Validates repo URL - if it's a valid git URL and if Arca can handle that type or repo URL
137+
""" Validates repo URL - if it's a valid git URL and if Arca can handle that type of repo URL
138138
139139
:raise ValueError: If the URL is not valid
140140
"""

docs/backends.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ Then a VM is launched and the image is pulled there from the registry.
150150
This takes some time when first launching the VM, but if the VM is reused often, the upload/download time is shorted.
151151
The built images are also not lost when the VM is destroyed.
152152

153-
The backend inherits all the settings of ``DockerBackend`` (**keep_containers_running** is by default ``True``) has these extra settings:
153+
The backend inherits all the settings of ``DockerBackend`` (**keep_containers_running** is ``True`` by default) and has these extra settings:
154154

155155
* **box**: Vagrant box used in the VM. Either has to have docker version >= 1.8 or not have docker at all, in which case
156156
it will be installed when spinning up the VM.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def long_description():
4848
],
4949
},
5050
classifiers=[
51-
"Development Status :: 3 - Alpha",
51+
"Development Status :: 4 - Beta",
5252
"Intended Audience :: Developers",
5353
"License :: OSI Approved :: MIT License",
5454
"Programming Language :: Python",

tests/common.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ def return_str_function():
1414

1515
TEST_UNICODE = "Nechť již hříšné saxofony ďáblů rozezvučí síň úděsnými tóny waltzu, tanga a\xa0quickstepu.→"
1616

17-
SECOND_RETURN_STR_FUNCTION = """
17+
SECOND_RETURN_STR_FUNCTION = f"""
1818
def return_str_function():
19-
return "Nechť již hříšné saxofony ďáblů rozezvučí síň úděsnými tóny waltzu, tanga a\xa0quickstepu.→"
19+
return "{TEST_UNICODE}"
2020
"""
2121

2222
ARG_STR_FUNCTION = """

0 commit comments

Comments
 (0)