Skip to content

Commit ec12a01

Browse files
committed
applied pre-commit
1 parent a82117a commit ec12a01

File tree

7 files changed

+10
-8
lines changed

7 files changed

+10
-8
lines changed

.github/workflows/analysis-coverage.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ jobs:
2424
python-version: "3.10"
2525

2626
- name: Install from source
27-
run: python3 -m pip install -r requirements.txt
27+
run: |
28+
python3 -m pip install -r requirements.txt
2829
2930
- name: Run Analysis
30-
run: python3 -m pylint "lib/"
31+
run: |
32+
python3 -m pip install pylint
33+
python3 -m pylint "lib/"

.run/NC 27.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@
2828
<option name="INPUT_FILE" value="" />
2929
<method v="2" />
3030
</configuration>
31-
</component>
31+
</component>

.run/NC 28.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929
<option name="INPUT_FILE" value="" />
3030
<method v="2" />
3131
</configuration>
32-
</component>
32+
</component>

.run/NC 29.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929
<option name="INPUT_FILE" value="" />
3030
<method v="2" />
3131
</configuration>
32-
</component>
32+
</component>

.run/NC Last.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929
<option name="INPUT_FILE" value="" />
3030
<method v="2" />
3131
</configuration>
32-
</component>
32+
</component>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Nextcloud Python App Skeleton repository
22

3-
To make it easier to create new Nextcloud applications using Python,
3+
To make it easier to create new Nextcloud applications using Python,
44
you can immediately either clone this repository or simply copy it and use it as the basis for your future application.
55

66
By default, linters, pre-commit and other useful little things are configured here.

lib/main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
from contextlib import asynccontextmanager
44

55
from fastapi import FastAPI
6-
76
from nc_py_api import NextcloudApp
87
from nc_py_api.ex_app import AppAPIAuthMiddleware, LogLvl, run_app, set_handlers
98

0 commit comments

Comments
 (0)