Skip to content

Commit

Permalink
Delint files
Browse files Browse the repository at this point in the history
  • Loading branch information
sqrrrl committed Dec 6, 2021
1 parent ea4168d commit 82495cc
Show file tree
Hide file tree
Showing 20 changed files with 37 additions and 40 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ TODo...
1.
1.

# Specifications
## Specifications

- Python version (`python --version`)
- OS (Mac/Linux/Windows)
14 changes: 7 additions & 7 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ have to jump a couple of legal hurdles.
Please fill out either the individual or corporate Contributor License Agreement
(CLA).

* If you are an individual writing original source code and you're sure you
own the intellectual property, then you'll need to sign an
[individual CLA](https://developers.google.com/open-source/cla/individual).
* If you work for a company that wants to allow you to contribute your work,
* If you are an individual writing original source code and you're sure you
own the intellectual property, then you'll need to sign an
[individual CLA](https://developers.google.com/open-source/cla/individual).
* If you work for a company that wants to allow you to contribute your work,
then you'll need to sign a
[corporate CLA](https://developers.google.com/open-source/cla/corporate).

Expand All @@ -21,10 +21,10 @@ accept your pull requests.

## Contributing A Patch

1. Submit an issue describing your proposed change to the repo in question.
1. The repo owner will respond to your issue promptly.
1. Submit an issue describing your proposed change to the repository in question.
1. The repository owner will respond to your issue promptly.
1. If your proposed change is accepted, and you haven't already done so, sign a Contributor License Agreement (see details above).
1. Fork the desired repo, develop and test your code changes.
1. Fork the desired repository, develop and test your code changes.
1. Ensure that your code adheres to the existing style in the sample to which you are contributing.
1. Ensure that your code has an appropriate set of unit tests which all pass.
1. Submit a pull request!
4 changes: 2 additions & 2 deletions admin_sdk/directory/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ Directory API.

## Install

```
```shell
pip install -r requirements.txt
```

## Run

```
```shell
python quickstart.py
```
4 changes: 2 additions & 2 deletions admin_sdk/reports/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ that makes requests to the Google Admin SDK Reports API.

## Install

```
```shell
pip install -r requirements.txt
```

## Run

```
```shell
python quickstart.py
```
4 changes: 2 additions & 2 deletions admin_sdk/reseller/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ that makes requests to the Google Admin SDK Reseller API.

## Install

```
```shell
pip install -r requirements.txt
```

## Run

```
```shell
python quickstart.py
```
1 change: 0 additions & 1 deletion apps_script/execute/execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
from __future__ import print_function
from googleapiclient import errors
from googleapiclient.discovery import build
from httplib2 import Http
from oauth2client import file as oauth_file, client, tools


Expand Down
4 changes: 2 additions & 2 deletions apps_script/quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ that makes requests to the Google Apps Script API.

## Install

```
```shell
pip install -r requirements.txt
```

## Run

```
```shell
python quickstart.py
```
4 changes: 2 additions & 2 deletions calendar/quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ makes requests to the Google Calendar API.

## Install

```
```shell
pip install -r requirements.txt
```

## Run

```
```shell
python quickstart.py
```
4 changes: 2 additions & 2 deletions classroom/quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ makes requests to the Google Classroom API.

## Install

```
```shell
pip install -r requirements.txt
```

## Run

```
```shell
python quickstart.py
```
1 change: 0 additions & 1 deletion classroom/snippets/base_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
from googleapiclient import errors
from oauth2client.client import GoogleCredentials
from googleapiclient.discovery import build
from oauth2client import file, client, tools

SCOPES = 'https://www.googleapis.com/auth/classroom.courses'

Expand Down
3 changes: 1 addition & 2 deletions docs/mail-merge/docs_mail_merge_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@

from googleapiclient import discovery
import google.auth
from docs_mail_merge import (CLIENT_ID_FILE, get_data, get_http_client,
_copy_template)
from docs_mail_merge import (get_data, get_http_client, _copy_template)


class TestDocsMailMerge(unittest.TestCase):
Expand Down
4 changes: 2 additions & 2 deletions docs/quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ requests to the Google Docs API.

## Install

```
```shell
pip install -r requirements.txt
```

## Run

After following the quickstart setup instructions, run the sample:

```
```shell
python quickstart.py
```
2 changes: 1 addition & 1 deletion events/next18/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

This sample was created for a talk for Google Cloud NEXT'18 entitled "Building
on the Docs Editors: APIs and Apps Script". It is the implementation of a
commandline tool that:
command-line tool that:

* Extracts template variables out of a Google Slides template presentation
* Writes those variables to a Google Sheets spreadsheet
Expand Down
2 changes: 1 addition & 1 deletion events/next18/qbr_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

# pylint: disable=E1102,W0141
# pylint: disable=E1102
# python3
"""Tool for generating quarterly business reviews.
Expand Down
4 changes: 2 additions & 2 deletions gmail/quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ makes requests to the Gmail API.

## Install

```
```shell
pip install -r requirements.txt
```

## Run

```
```shell
python quickstart.py
```
4 changes: 2 additions & 2 deletions people/quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ requests to the Google People API.

## Install

```
```shell
pip install -r requirements.txt
```

## Run

After following the quickstart setup instructions, run the sample:

```
```shell
python quickstart.py
```
4 changes: 2 additions & 2 deletions sheets/quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ requests to the Google Sheets API.

## Install

```
```shell
pip install -r requirements.txt
```

Expand All @@ -16,6 +16,6 @@ pip install -r requirements.txt

After following the quickstart setup instructions, run the sample:

```
```shell
python quickstart.py
```
4 changes: 2 additions & 2 deletions slides/quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ requests to the Google Slides API.

## Install

```
```shell
pip install -r requirements.txt
```

## Run

After following the quickstart setup instructions, run the sample:

```
```shell
python quickstart.py
```
4 changes: 2 additions & 2 deletions tasks/quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ requests to the Google Tasks API.

## Install

```
```shell
pip install -r requirements.txt
```

## Run

After following the quickstart setup instructions, run the sample:

```
```shell
python quickstart.py
```
4 changes: 2 additions & 2 deletions vault/quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ requests to the Google Vault API.

## Install

```
```shell
pip install -r requirements.txt
```

## Run

After following the quickstart setup instructions, run the sample:

```
```shell
python quickstart.py
```

0 comments on commit 82495cc

Please sign in to comment.