Skip to content

Commit cac115e

Browse files
JoeWang1127ddixit14
authored andcommitted
chore: format python code (#2452)
1 parent 00be453 commit cac115e

File tree

2 files changed

+18
-17
lines changed

2 files changed

+18
-17
lines changed

library_generation/setup.py

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,21 @@
44

55
from setuptools import setup
66

7-
setup(name='library_generation',
8-
version='0.1',
9-
package_dir={
10-
'library_generation': '.',
11-
},
12-
package_data={
13-
'library_generation': [
14-
'*.sh',
15-
'templates/*.j2',
16-
'gapic-generator-java-wrapper',
17-
'requirements.*',
18-
'owlbot/src/requirements.*',
19-
'owlbot/bin/*.sh',
20-
'owlbot/templates/**/*.j2',
21-
],
22-
}
7+
setup(
8+
name="library_generation",
9+
version="0.1",
10+
package_dir={
11+
"library_generation": ".",
12+
},
13+
package_data={
14+
"library_generation": [
15+
"*.sh",
16+
"templates/*.j2",
17+
"gapic-generator-java-wrapper",
18+
"requirements.*",
19+
"owlbot/src/requirements.*",
20+
"owlbot/bin/*.sh",
21+
"owlbot/templates/**/*.j2",
22+
],
23+
},
2324
)

library_generation/test/integration_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def test_generate_repo(self):
108108
@classmethod
109109
def __pull_repo_to(cls, dest: Path, repo: str, committish: str):
110110
repo_url = f"{repo_prefix}/{repo}"
111-
print(f'Cloning repository {repo_url}')
111+
print(f"Cloning repository {repo_url}")
112112
repo = Repo.clone_from(repo_url, dest)
113113
repo.git.checkout(committish)
114114

0 commit comments

Comments
 (0)