Skip to content

Commit 45a0d0d

Browse files
authored
Fix typos discovered by codespell (#71)
* Fix typos discovered by codespell * Fix typos discovered by codespell * Run CI GitHub Action on: [push, pull_request]
1 parent b271785 commit 45a0d0d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Partition Manager CI
22

3-
on: [push]
3+
on: [push, pull_request]
44

55
jobs:
66

partitionmanager/table_append_partition.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ def generate_sql_reorganize_partition_commands(table, changes):
640640
641641
table: a types.Table object
642642
643-
changes: a list of objects implenting types.PlannedPartition
643+
changes: a list of objects implementing types.PlannedPartition
644644
"""
645645
log = logging.getLogger(f"generate_sql_reorganize_partition_commands:{table.name}")
646646

partitionmanager/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ def __repr__(self):
289289

290290

291291
class PositionPartition(_Partition):
292-
"""A partition that has a position assocated with it.
292+
"""A partition that has a position associated with it.
293293
294294
Partitions are independent table segments, and each has a name and a current
295295
position. The positions-list is an ordered list of identifiers, matching

0 commit comments

Comments
 (0)