Skip to content

Commit de195ea

Browse files
committed
Fix spelling of "License" everywhere
1 parent 35a793a commit de195ea

15 files changed

+16
-16
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,8 @@ But if working in a fresh environment (for example after cloning the source code
220220

221221
* [krakenex][python3-krakenex] is licensed under the LGPLv3 license.
222222
* [arrow][arrow-license] is licensed under the Apache License, Version 2.0.
223-
* [tabulate][tabulate-license] is licensed under the MIT Licence.
224-
* [colorlog][colorlog-license] is licensed under the MIT Licence.
223+
* [tabulate][tabulate-license] is licensed under the MIT License.
224+
* [colorlog][colorlog-license] is licensed under the MIT License.
225225

226226
### Development dependencies
227227

src/clikraken/api/api_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
This module contains various functions related to interacting
77
with or processing data from Kraken's API.
88
9-
Licensed under the Apache License, Version 2.0. See the LICENCE file.
9+
Licensed under the Apache License, Version 2.0. See the LICENSE file.
1010
"""
1111

1212
import http

src/clikraken/api/private/cancel_order.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
This module queries the CancelOrder method of Kraken's API
77
and outputs the results in a tabular format.
88
9-
Licensed under the Apache License, Version 2.0. See the LICENCE file.
9+
Licensed under the Apache License, Version 2.0. See the LICENSE file.
1010
"""
1111

1212
from clikraken.api.api_utils import query_api

src/clikraken/api/private/get_balance.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
This module queries the Balance method of Kraken's API
77
and outputs the results in a tabular format.
88
9-
Licensed under the Apache License, Version 2.0. See the LICENCE file.
9+
Licensed under the Apache License, Version 2.0. See the LICENSE file.
1010
"""
1111

1212
from collections import OrderedDict

src/clikraken/api/private/list_closed_orders.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
This module queries the ClosedOrders method of Kraken's API
77
and outputs the results in a tabular format.
88
9-
Licensed under the Apache License, Version 2.0. See the LICENCE file.
9+
Licensed under the Apache License, Version 2.0. See the LICENSE file.
1010
"""
1111

1212
from decimal import Decimal

src/clikraken/api/private/list_open_orders.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
This module queries the OpenOrders method of Kraken's API
77
and outputs the results in a tabular format.
88
9-
Licensed under the Apache License, Version 2.0. See the LICENCE file.
9+
Licensed under the Apache License, Version 2.0. See the LICENSE file.
1010
"""
1111

1212
from decimal import Decimal

src/clikraken/api/private/place_order.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
This module queries the AddOrder method of Kraken's API
77
and outputs the results in a tabular format.
88
9-
Licensed under the Apache License, Version 2.0. See the LICENCE file.
9+
Licensed under the Apache License, Version 2.0. See the LICENSE file.
1010
"""
1111

1212
import clikraken.global_vars as gv

src/clikraken/api/public/depth.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
This module queries the Depth method of Kraken's API
77
and outputs the results in a tabular format.
88
9-
Licensed under the Apache License, Version 2.0. See the LICENCE file.
9+
Licensed under the Apache License, Version 2.0. See the LICENSE file.
1010
"""
1111

1212
from collections import OrderedDict

src/clikraken/api/public/last_trades.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
This module queries the Trades method of Kraken's API
77
and outputs the results in a tabular format.
88
9-
Licensed under the Apache License, Version 2.0. See the LICENCE file.
9+
Licensed under the Apache License, Version 2.0. See the LICENSE file.
1010
"""
1111

1212
from collections import OrderedDict

src/clikraken/api/public/ticker.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
This module queries the Ticker method of Kraken's API
77
and outputs the results in a tabular format.
88
9-
Licensed under the Apache License, Version 2.0. See the LICENCE file.
9+
Licensed under the Apache License, Version 2.0. See the LICENSE file.
1010
"""
1111

1212
from collections import OrderedDict

src/clikraken/clikraken.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
Command line client for the Kraken exchange
88
9-
Licensed under the Apache License, Version 2.0. See the LICENCE file.
9+
Licensed under the Apache License, Version 2.0. See the LICENSE file.
1010
"""
1111

1212
from clikraken.api.api_utils import load_api_keyfile

src/clikraken/clikraken_cmd.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
and associates the different subcommands with the corresponding
88
function to be called.
99
10-
Licensed under the Apache License, Version 2.0. See the LICENCE file.
10+
Licensed under the Apache License, Version 2.0. See the LICENSE file.
1111
"""
1212

1313
import argparse

src/clikraken/clikraken_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
This module contains various functions that are used throughout
77
clikraken's modules.
88
9-
Licensed under the Apache License, Version 2.0. See the LICENCE file.
9+
Licensed under the Apache License, Version 2.0. See the LICENSE file.
1010
"""
1111

1212
import arrow

src/clikraken/global_vars.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This module serves as a container for global variables.
77
8-
Licensed under the Apache License, Version 2.0. See the LICENCE file.
8+
Licensed under the Apache License, Version 2.0. See the LICENSE file.
99
"""
1010

1111
import os

src/clikraken/log_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This module sets the logger object up for use throughout clikraken's modules.
77
8-
Licensed under the Apache License, Version 2.0. See the LICENCE file.
8+
Licensed under the Apache License, Version 2.0. See the LICENSE file.
99
"""
1010

1111
import logging

0 commit comments

Comments
 (0)